IO Operation (read/write files) in IPAD AIR downgrade ~50% than the one in IPAD4

Summary:
UnZip the same file with the same native unzip method (native zlib) in IOS7, ipad air take +50% more time consumption than the one in iPAD4.
for unZip, it main perform the IO read/write files in ipad, does apple air already changes the file system ?
Steps to Reproduce:
UnZIP a file with native zlip on both ipad AIR and IPAD 4 :
IPAD AIR: 16GB
IPAD 4: 16GB
ZIP file size: 700KB
Files in zip file: 225 files (120 files are images)
  after remove the images, the time on IPAD AIR will save 50% time consumption
unZip method: the native zlib
unzip time on IPAD AIR+ IOS7: ~1200ms
unzip time on IPAD 4+ IOS7: ~800ms
Expected Results:
The unzip time should be almost the same on IPAD AIR and IPAD4.
Actual Results:
For same IO operation read/write file, IPAD AIR gets the 50% downgrade performance than the one in IPAD4
Version:
IPAD4: 16GB WIFI + IOS7
IPAD AIR: 16GB WIFI + IOS7
does anyone else encounter the same problem ?
A bug already submitted for apple: https://devforums.apple.com/message/993060

I even tried porting the code to Gumbo and running it there - still, no fonts are being enumerated.
If you're too lazy to read the whole above post, here's the problem in one sentence
An SWF that contains a textfield with embedded fonts, when launched by itself succeeds to return the embedded font using Font.enumerateFonts(false), however when loaded using Loader.loadBytes into AIR, it fails to see those fonts even though the textfield in it is displayed and editable.
How do I make the loaded child application and AIR see the embedded font?

Similar Messages

  • Is the iPad air more durable than the iPad 2?

    I thought I heard it's made of new material that makes it more break resistant than previous models. If someone almost never drops their iPad is a case worth it? Will the screen shatter upon impact? My old one did.

    The screens are made of glass. They can break. "Almost never" means sometimes. Get a case.

  • I have an iPad air and have downloaded the microsoft app excel.  I have an email with an excel attachment.  When I "tap to download" the attachment, it auto converts to a PDF file.  I want it to open in excel.  Please help.

    I have an iPad air and have downloaded the microsoft app excel.  I have an email with an excel attacment.  When I "tap to download" the attachment, it automatically converts to a PDF file and opens as a "view only" document.  I want it to open with the excel app so I can see and update the spreadsheet.  Please help.  Thanks!

    If Excel works as do other apps, you should be able to tap and hold on the attachment and then select "Open in Excel" in the window that will open. Note that you need to be subscribed to and signed into Office 365 to be able to edit documents in Microsoft's apps.
    Regards.

  • How to read write file in HTML5 extension

    Hi,
    I think it could be very generic question since moving from Flex to HTML5 extension is loosing ability to read write a file in local file system.
    I'm trying to write a log file within extension space but It throws error as 'TypeError: Illegal constructor'
    new File(csInterface.getSystemPath(SystemPath.EXTENSION)+"/log/Log_"+.getCurrentDateString+".txt");
    does someone have solve for this.
    Thanks in advance
    MM

    Yeah, It could be a reason for nested error but I got the error right before executing "getCurrentDateString". But I kind of figured it out as Javascript looses ability to read write file in user file system except Crome browser, you can read more here. However Adobe has added fs API within CEP which allows user to read and write file in user system.
    Here is some peace of code on how to do it, complete API reference check here :
    var result = window.cep.fs.writeFile(logFilepath, "Your data goes here");
      if(result.err != 0)
      throw new Error("Result object has error");
    However still this does not provide any method to append the content in existing file as a result if you wanted to write kind of log file, every time you need to first read the file and then concatenate your content to file data then write data again to new file. sound hefty to append content?
    I'm hoping if any Adobe staff has any comment on this.
    Thanks
    MM

  • Adobe Reader app on my ipad air problem with combo boxes filling in

    I am using Adobe Reader app on my ipad air and when filling out forms, and making a selection from a combo box, my selection dissappears.  Not visible, not printable, not savable, just blank.  It works well on my Reader on my Windows desktop.  Any ideas?

    cas ecowater,
    We can examine your PDF forms and determine the cause of the problem.
    Would you send the PDF forms as email attachments to [email protected]?  Please include the link to this forum post (https://forums.adobe.com/thread/1634405) in your email message for reference.
    Thank you.

  • Help with Read/Write File

    hi I was wondering if someone can help me do some read/write file with java. here is what I want to do:
    Read a file and search the whole file for a word such as "throw" and print out the rest of that line to a new file. in the case of "throw", i want to link all thrown exceptions to the file that contained them.
    can someone help me out and let me know what way I can approach in this?
    any help would be greatly appreciated.
    thanks!

    Rough and dirty, here's a class that will read a file and return a resultset:
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.FileChannel;
    import java.util.*;
    import java.text.DateFormat;
    public class Utils{
         File fileName;
         FileOutputStream outputFile;
         boolean closeChannel;
         //Constructor
         public Utils(String directory, String filename){
              String strFileDir = directory;
              String strFileName = filename;          
              File fileDir = new File(strFileDir);
              fileName = new File(fileDir, strFileName);
              // If directory does not exhist, create it.
              if(!fileDir.isDirectory()){
                   if(fileDir.mkdirs()){
                        System.out.println(fileDir + " created.");
                   else{
                        System.out.println(fileDir + " could not be created.");                    
    public ArrayList readText() throws IOException{          
              // Read content of file into a collection
              ArrayList arrayList = new ArrayList();
              try{
                   BufferedReader in = new BufferedReader(new FileReader(fileName));
                   String line;
                   while((line = in.readLine()) != null){
                        arrayList.add(line);
                   in.close();               
              catch (IOException ex){
                   throw ex;
              return arrayList;          
         }And here's how you use the class:
    // Create a new Disk Utilities object.  This can be used for all subsequent read/writes to this file.
              Utils utilTest = new Utils("e:/testing", "Testing.txt");
    // Create a collection to hold the data from the file.
              ArrayList arrayList = new ArrayList();
              try{arrayList = utilTest.readText();}catch(IOException ex){ex.printStackTrace(System.err);}

  • Read .idml file in adobe air?

    how to read .idml file in adobe air?

    By the way, I tried 40kb file and 4kb file, both of them are failed. Anyone know how to debug it? Thanks

  • How To read/write file on remote server in java

    Hi All,
    How To read/write file on remote server in java? I mean using URL - http://www.xyz.com can I right file to that perticular server.
    Thanks in advance

    If your server support a means of uploading files you can.
    A popular means is [http://en.wikipedia.org/wiki/WebDAV]
    However, by default web server don't allow you upload files, its usually something you need to configure or install.
    I suggest you have a look at your web servers documentation.

  • TS3899 I recently discovered that I can no longer access websites pointed to within the content of an email message on my iPad Air by clicking on the highlighted HTML text or symbols. What should I do to correct this issue?

    I recently discovered that I can no longer access websites pointed to within the content of an email message on my iPad Air by clicking on the highlighted HTML text or symbols. What have I done to create, and what should I now do to correct, this issue?

    Or you could include a width to your body style:
    body {
    background-image: url(Logo/sky1.jpg);
    background-position: center center;
    background-attachment: fixed;
    width: 75%;}
    It might work or not depending on your other color scheme.

  • HT4101 Has anyone found a way to download pictures from Samsung Gala               xy 3 phone to Ipad air?  I bought the lightning adapter but keeps giving me the message uses too much power.

    Has anyone found a way to download pictures fro Samsung Galaxy 3 phone to the Ipad air? I bought the lightning adapter but I keep getting the message device uses too much power.  Any ideas?

    You can't directly from a Galaxy phone.  But you can certainly upload the pictures from your Galaxy phone to your computer and then sync them to your iPad via iTunes.

  • How do I stop apps from my iPad Air being downloaded to the iPhone4?

    If I download a game or app to my iPad Air in iOS8, why is it downloaded to my iPhone4 automatically when I sync through iTunes12 on my iMac. Have I somehow turned this auto match download? How do I stop this from happening? I only want what I download to the iPad Air, unless I manually decide to install it on the iPhone4 through iTunes12.
    jr

    With the settings changed on the iPhone4, why the iPad Air? I downloaded the apps to it. Then chose to delete them, which works. I just have to remember to delete them from iTunes12 eventually.

  • Wil ipad air 4G work in the Netherlands on Vodadone network? (A1475)

    Wil ipad air 4G work in the Netherlands on Vodadone network? (A1475)
    i mean on their 4G network?

    May I ask which iPhone you use and which carrier you use whilst visiting the uk.as some still don't have 4g in many areas
    I have an iPhone 5 on Verizon (CDMA). I am not entirely sure which carrier I use while in Europe. A friend gets the SIM and sends the SIM to me and it is GSM. The SIM slot on my phone is unlocked for GSM as are all Verizon phones with a SIM slot. When I leave the US
    I remove my Verizon SIM (required for LTE/4G) and install the European SIM. The day I travel my friend activates the SIM and I have phone service as soon as I land. The data is limited to 3G or less. Not a real problem as anywhere I go I can generally get WIFI. I just use the data when I am traveling on the train to get schedules and platform information.
    Newer models of the phones may support the LTE/4G bands in Europe so that may no longer be an issue. It could also be the provider my friend uses has limited or no LTE/4G service.
    You need to carefully consider the warranty issue. If you buy the phone in the US you will have no warranty in Europe. That may be a very real and significant hassle if you have problems with the phone.
    I suspect the phones cost more in Europe because of VAT and import duties. We host exchange students from Europe and they generally buy an iPhone when they are living here. I tell them to leave the box and any packing here so that when they go through customs they will not be dinged for duties and if asked where they got the phone just say they brought it with them. Although customs figures almost everyone has a phone and will not be at all concerned about a phone that is not in a box.

  • Ipad Air: Will stores carry the Verizon model on the 1st? (Website doesn't have them listed)

    I was planning to pick up a 128g Verizon model on the 1st but I would like to make sure that they will be carried by the local stores. I noticed on the website they are not showing any Verizon models (Just ATT and such).
    Any confirmation would be appreciated,
    Thanks

    Unfortunately, there is no way that the stores can tell when and what kind of tablets they will be getting. While the VZW iPad Air might not be on bestbuy.com just yet, since Verizon is a supported carrier via Best Buy Mobile the odds of the stores eventually having the tablet, and thus eventually showing up on the website, are good.
    I would just keep your eyes peeled and definitely check back in with your local Best Buy retail outlet, or bestbuy.com, tomorrow for the iPad Air release!
    All the best,
    Dylan - Customer Service Specialist @ Best Buy
    I am an employee of Best Buy but my comments, posts, and opinions are my own and do not necessarily reflect those of Best Buy.

  • Just got my new iPad Air and noticed that the screen calibration is off. For example if I select the circle to place something there I have to select outside of the circle to make it happen. I did not have this issue on my previous iPad.

    Just got my new iPad Air and noticed that the screen calibration is off. For example if I select the circle to place something there I have to select outside of the circle to make it happen. I did not have this issue on my previous iPad.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
    If no fix, Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • My iPad Air shuts down in the middle of a search

    MMy iPad Air shuts down in the middle of a search

    Hi kathrynfromjim thorpe,
    Welcome to the Apple Support Communities!
    I understand that your iPad Air is shutting down while you are searching. In this situation I would recommend following the troubleshooting information located in the attached article. 
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it - Apple Support
    Cheers,
    Joe 

Maybe you are looking for

  • IPhoto 11 problems, crash, libr manager

    iPhoto 11 (9.2) Lion 10.7.3, iPhoto Library Manager, duplicate annhilator, thumbnail annihilator 27 inch, Mid2011, 2.7 Ghz Intel Core i5, 4 GB mem 1333 MHz DDR3. When my Mac G5 tower hd crashed in December, it did a terrible thing to my photos. I was

  • COMBINE FILES: save job?

    Hi everyone! I'm combining over 100 MS-office documents into one PDF using the COMBINE FILES function in Acrobat 8 standard. But every time one of the documents is updated it looks like I have to go through the whole process all over again.... drop t

  • Satellite A50-512 PSA50E - IDE #0 ERROR

    SATELLITE SA50-512 It does'nt detect any harddrive. In Acpi bios V. 1.20 i get the msg.: DRIVES I/0 BUILT-IN HDD =NO DRIVE CD-ROM =SECONDARY IDE(170H/IRQ15) And in dos the msg.: IDE #0 ERROR It is NOT hdd problem, because i have tried 3 other harddri

  • Errror with LSMW

    getting error in LSMW saying "no target structures could be found" and "no target fields".help me out

  • Nothing is in my computer all the files are empty what do I have to do to get it back

    HP  Pavilion 23 a301 all the files are empty while i was downloading the drivers i must have done some thing wrong the next day all my files are empty. and still are i had 4 disc of back up and only two it reconice the thirt one get spat out. I write