JDeveloper Studio 10.1.3 zip file is corrupted

Downloaded JDeveloper Studio 10.1.3 half dozen time over last week, but all downloaded zip file were corrupted. Has anyone got a good download? Or is there another mirror site I can grab the file from?
Thanks!
James

The link I downloaded the file from:
http://download.oracle.com/otn/java/jdeveloper/1013/jdevstudio1013.zip
The file size after I download it:
Size: 325 MB (341,247,683 bytes)
Size on disk: 325 MB (341,250,048 bytes)
Thanks,
James

Similar Messages

  • APEX Dicom Sample zip file is corrupt.

    The File dicom-1-133417.zip of DICOM samples in APEX packed applications is CORRUPT!
    This is the page (DICOM sample)
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/packaged-apps-090453.html#DICOM
    Please , somebody from oracle can fix it? we are trying to make a presentation with 11gr2 and DICOM features, but without this we have to make all from scratch. Please help!.

    Zip file gets corrupt or damage due to malware infections, virus interruption, power failed and system suddenly shut-down etc. But you can get rid from corrupted errors of Zip files through: - ZIP Viewer Tool
    http://www.zip.viewertool.com/
    just read the details here:http://www.filerepairforum.com/forum/archives/archives-aa/winzip/1140-how-open-open-archive-without-winrar-or-7zip

  • JDeveloper Studio 1.0.1.3 zip file is corrupted

    Download the zip file twice in two day, both of them are corrupted. Please help.
    James

    The link I downloaded the file from:
    http://download.oracle.com/otn/java/jdeveloper/1013/jdevstudio1013.zip
    The file size after I download it:
    Size: 325 MB (341,247,683 bytes)
    Size on disk: 325 MB (341,250,048 bytes)
    Thanks,
    James

  • ByteArrayInputStream as source for zip file entry corrupts the ByteArray

    Hi All,
    I have managed to create and add a (in-memory) zip file as an email attachment. I add a file to the zip file , then push data to this file via a ByteArrayInputStream.
    Adding the file (created via ByteArrayInputStream) to an email works perfectly. If i then add another step and zip this file it corrupts the output.
    It looks like it is turning the carriage return into a [] . Its 'almost right' as when I cut & paste the contents of the txt file i created (from the zip file) into Word it displays correctly, with the carriage returns. Is it some kind of encoding problem, or mime type issue?
    My ByteArrayInputStream uses buf.append("\n"); for carriage returns. I think the problem is with
    ByteArrayInputStream baIn = new  ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc()) );where I think i need to encode this somehow. Here is the complete code to create and add the zip file to an email. Any isuggestions will be appreciated.
    //START of new ZIP code    
                                                                                             /* Specify files to be zipped */
                                                                                            // Create temp file.
                                                                                            //File temp = File.createTempFile(fileName, ".txt");                           
                                                                                            //temp.deleteOnExit();                                                           
                                                                                            //BufferedWriter bOut = new BufferedWriter(new FileWriter(temp));                                                          
                                                                                            //ByteArrayInputStream baInTemp = new ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc() ) );
                                                                                            //bOut.write( baInTemp.toString() );
                                                                                            //bOut.close();
                                                                                             String[] filesToZip = new String[3];
                                                                                             filesToZip[0] = "C:\\Program Files\\NetBeans3.6\\firstfile.txt";
                                                                                             filesToZip[1] = "C:\\Program Files\\NetBeans3.6\\secondfile.txt";
                                                                                             filesToZip[2] = "C:\\Program Files\\NetBeans3.6\\thirdfile.txt";
                                                                                             final String fileToZip = fileName;
                                                                                             /*  Create a memory buffer to store the ByteArray, fixed size */                                                         
                                                                                             byte[] buffer = new byte[18024];
                                                                                             /* Specify zip file name */
                                                                                             String zipFileName= eq_rt.getReportName() + ".zip";
                                                                                             try {
                                                                                                 /* Create ZipOutputStream to store the FileOutputStream */
                                                                                                 // ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFileName));
                                                                                                 ByteArrayOutputStream byteArray = new ByteArrayOutputStream();                                                             
                                                                                                 ZipOutputStream out = new ZipOutputStream(byteArray);                                                              
                                                                                                 /* Set the compression ratio */
                                                                                                 out.setLevel(Deflater.DEFAULT_COMPRESSION);
                                                                                                 /* iterate through the array of files, adding each to the zip file */
                                                                                                 for (int a = 0; a < filesToZip.length; a++) {
                                                                                                    /* Print the filenumber being added to the zip */
                                                                                                    System.out.println(a);
                                                                                                    /* Associate a file input stream for the current file */
                                                                                                   // FileInputStream in = new FileInputStream(filesToZip[a]);
                                                                                                       This ROCKS as it is passing a array into the text file .getBytes() seems
                                                                                                       to be the KEY in getting ByteArrayInputStream to WORK
                                                                                                    //String strSocketInput = "TAIWAN";
                                                                                                    //ByteArrayInputStream baIn = new ByteArrayInputStream(strSocketInput.getBytes());
                                                                                                    //String strSocketInput = new String (getAttachementNoFormat(eq_rt.getStoredProc()).toString() );                                                                                           
                                                                                                    //ByteArrayInputStream baIn = new ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc()) );
                                                                                                     ByteArrayInputStream baIn = new  ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc()) );
                                                                                                    //String strSocketInput = "TAIWAN";
                                                                                                    //ByteArrayInputStream baIn = new ByteArrayInputStream(strSocketInput.getBytes());
                                                                                                    /* Add ZIP entry to output stream. */                                                   
                                                                                                    out.putNextEntry(new ZipEntry(filesToZip[a]));                                                  
                                                                                                    /* Transfer bytes from the current file to the ZIP file */
                                                                                                    int len;
                                                                                                    while ((len = baIn.read(buffer)) > 0)
                                                                                                    out.write(buffer, 0, len);
                                                                                                    /* Close the current entry */
                                                                                                    out.closeEntry();
                                                                                                    /* Close the current file input stream */
                                                                                                    baIn.close();                                                   
                                                                                                /* Close the ZipOutPutStream (very important to close the zip before you attach it to the email) Thanks DrClap */
                                                                                                out.close();                                                    
                                                                                                /* Create a datasource for email attachment */
                                                                                                // DataSource sourcezip = new FileDataSource(zipFileName);
                                                                                                DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/gzip" );
                                                                                                /* Create a new MIME bodypart */
                                                                                                BodyPart attachment = new MimeBodyPart();
                                                                                                attachment.setDataHandler(new DataHandler(sourcezip));
                                                                                                attachment.setFileName(zipFileName);                       
                                                                                                /* attach the attachemnts to the mail */
                                                                                                multipart.addBodyPart(attachment);                                                       
                                                                                             catch (IllegalArgumentException iae) {
                                                                                               iae.printStackTrace();
                                                                                             catch (FileNotFoundException fnfe) {
                                                                                               fnfe.printStackTrace();
                                                                                             catch (IOException ioe)
                                                                                             ioe.printStackTrace();
                                                                                           // End Of New ZIP code    

    I came up with 'a' solution (not sure if its the best way but appears to work)
    \n = corrupt
    \r\n = ok in zip

  • LR4 Beta Win 64bit zip file is corrupted.

    I can't unzip the file "lightroom4_p1_win64_011012.zip" downloaded from http://www.adobe.com/cfusion/entitlement/index.cfm?event=custom&loc=EN_US&sku=FS0002598&e= labs_lightroom4
    I tried three unpacking software but every print the error like corrupted archive.
    For expample:
    ...\lightroom4_p1_win64_011012.zip: CRC failed in setup.exe. The file is corrupt
    Or:
    0x80004005

    I am having trouble getting this file too at its full size, while I can download similarly large files elsewhere OK. Firefox errors every time after a bit with this message:
    C:\Users\ssanders\Desktop\lightroom4_p1_win64_011012.zip could not be saved, because the source file could not be read.
    Try again later, or contact the server administrator.
    But there are plenty of torrent sites hosting lightroom4_p1_win64_011012.zip, so looks like I must take that route instead for now.

  • Missing folder structure in zip file from Theme Editor

    Hi all gurus!
    I have an interesting problem with this background: I want to change the customer brand image in the portal header and do som other modifications. For this reason I have made a copy of one of the standard portal themes, as I'm supposed to do, and I have downloaded that zip file from the portal.
    When unzip this file i get the following files: its.zip, log.html, metadata.properties, portal.zip and upgrade.xml. As I have understood it that is the correct content. Now I'm supposed to unzip the file "portal.zip" and reach amongst other folders the one named "prtl". In this one there is a folder named "images" and under that one is "header" found and in THAT folder the change of picture is done.
    Now for the problem: when I unzip "portal.zip" I just get the content of some property file, NO folders what so ever! If I try to unzip "its.zip" I can see the folder structure under that folder!
    If I open the structure with Total Commander I can see the missing folders! But I can't do the copying of the image, the whole structre gets duplicated when I save! I thought the zip file was corrupt so I made another copy and downloaded it but with the same result!
    Has anyone had the same problem???
    Best regards
    Benny Lange

    Problem solved! By 7-zip. It was actually XP's integrated zip tool that just didn't show the underlaying structure. And Total Commander also did the work if used in the same way as 7-zip, but to edit the second level zip file directly did not work as TC opened that file in a temp directory instead of continuing at the level of the first zip file. That kind of editing directly in a file two zip levels down actually worked in TC 6.x but now I have 7.05 and perhaps things has changed.

  • How do I open a pw protected zip file?

    This question appears to be different from similar questions asked because I HAVE the password. I really don't want to download extra safe-cracker's-anonymous software to hack into it. The file just never gives me the option of entering it. I have the zip file, I double-click on it, it gives me an error message. I right-click on it but no options there either. How do I open it such that it gives me a chance to unlock it?
    Appreciate the help. (and yeah, I have no idea if I'm in the right community - sorry about that if I'm in the wrong place)

    The zip file format is not a nice, standardized format. You could have a weird zip file that is technically not bad, but isn't supported by the built-in software on Mac OS X. In some cases, when zip files won't open, I've had success opening them with The Unarchiver, which is available both in the App Store and outside it:
    https://itunes.apple.com/us/app/the-unarchiver/id425424353?mt=12
    http://unarchiver.c3.cx
    (I don't know if there's a difference in functionality between the two... there could be, but if there is, I am not aware of it.)
    It's also possible the zip file is corrupted, and won't be openable by anything.

  • Download zip files for Oracle 12c are corrupt

    Hi,
        I downloaded Oracle 12c Windows 64bit and the Disk2 Zip file is corrupt. It tried 2nd time but i got corrupted version only .
       Below are details
      1. winx64_12c_database_1of2
      2. winx64_12c_database_2of2 (got corrupted file)
    below are corrupted files when downloaded 2nd time
    !   C:\Downloads\winx64_12c_database_2of2(1).zip: CRC failed in database\stage\Components\oracle.rdbms.install.seeddb\12.1.0.1.0\1\DataFiles\Expanded\filegroup1\pdbseed.dfb. The file is corrupt
    !   C:\Downloads\winx64_12c_database_2of2(1).zip: CRC failed in database\stage\Components\oracle.rdbms.install.seeddb.sample_schema\12.1.0.1.0\1\DataFiles\Expanded\filegroup1\sampleschema.dfb. The file is corrupt
    Request you to Advice.
    Thanks
    Saurabh

    I assume you are downloading from this page - http://www.oracle.com/technetwork/database/enterprise-edition/downloads/database12c-win64-download-1968077.html
    Have you verified the checksums of the two zip files after you downloaded them ?
    HTH
    Srini

  • Documentation ZIP file error

    Everytime I try to unzip the documentation for the adobe SDK I get and error saying the zip file is corrupt or invalid, I have tried 5 different times to download and unzip. Any ideas?

    I just downloaded and unzipped it to test. Worked fine first try.

  • Corrupt ZIP files in Prod 11.1.2.1 - Workspace

    Hello all,
    This one has me and Oracle Support stumped.
    Only Prod is exhibiting the following issue...
    When exporting reports to a ZIP file, the file becomes corrupt, and gives an error when extracting with Windows. But what actually happens is that a file with the same name and NO extension (i.e. REPORTS) is in the REPORTS.ZIP file. This is what is causing the zip file to corrupt.
    The workaround is to extract the file using 7-ZIP, rename the REPORTS file to REPORTS1.ZIP, save it, then unzip the REPORTS1.ZIP file.
    This REPORTS1.ZIP has the reports that were zipped initially in Workspace.
    Any ideas what may be causing this? No other environment has this issue.
    Thanks in advance!!
    --Ed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    ZIP file seems to be corrupted. You must repair the file first. Do repair the file by using WinRAR program.
    Open WinRAR *>* open ZIP file *>* go to Tools *>* select Repair archive *>* Browse the path *>* check the box Treat the corrupt archive as ZIP *>* click on OK *>* wait for a while once the selected file is repaired *>* click on Close.
    Or if this solution fails to repair the file, then you must take help of third-party ZIP recovery software. A wide range of ZIP recovery software are available on the internet. Check few of them. You can use their demo version first. I can recommend you SysInfoTools ZIP Recovery software. You must try its free demo version before buying any other ZIP recovery software.
    Regards.

  • The solaris 8 (sparc) installation zip file corrupted

    I have downloaded twice the zip file from sun website.
    but everytime the file can not extracted by winzip.
    and say it is corrupted. Help me.

    Hi, Thanks for the reply,
    The Install appears to work OK, but when I execute
    "jar -tvf weblogic610sp1_generic.zip" I get Zip errors. I'm interested in
    knowing if other apparently successful installs have the same ZipException,
    to try and eliminate the possibility that the file might be corrupted?
    Thanks,
    Simon
    "Michael Young" <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    Definitely sounds like your file is corrupted. This should not be thecase. I downloaded this same file the other
    day and it installed ok for me. Try downloading once more (if you haven'talready done so). If you are still
    having problems then you should open a case with BEA support.
    Thanks,
    Michael
    simon wrote:
    Hi,
    I'm trying to install weblogic610sp1_generic.zip onto redhad linux 7.1.
    I've been having post-install problems (eg files missing) so I want to
    check that
    the zip file is not corrupted. When I try to "jar -tvfweblogic610sp1_generic.zip"
    I initially get a list of files, but then I get a ZipException readingHomeChooser$ButtonSelectionListener.class
    file.
    Does this mean the zip file is corrupted? (I checked the file size, andit matches
    the exact number of bytes published on the download page.)
    I'm happy to download the file again, but this is the second copy, andthey both
    behave the same!
    Thanks,
    Simon--
    Developer Relations Engineer
    BEA Support

  • Bad Zip Files

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name download-east.oracle.com
    - Filename 92010NT_disk1.zip
    - Date/Time 8/23/02 4:45 PM
    - Browser + Version IE 6.0
    - O/S + Version Win2K
    - Error Msg CRC errors
    Why can't you just make it a lot more small zips. Every time I download I get errors in different parts of the zip w/CRC errors. We could then download 50MB or 100MB pieces and unzip into the folder. Large zips are impractical

    Hi,
    (CRC- Cyclic Redundancy check if you get CRC error it means your zip file is corrupt) I also download 6i from same location and it works fine are u using any download manager for downloads.

  • Installation ZIP file corrupted?

    Hi,
    I'm trying to install weblogic610sp1_generic.zip onto redhad linux 7.1.
    I've been having post-install problems (eg files missing) so I want to check that
    the zip file is not corrupted. When I try to "jar -tvf weblogic610sp1_generic.zip"
    I initially get a list of files, but then I get a ZipException reading HomeChooser$ButtonSelectionListener.class
    file.
    Does this mean the zip file is corrupted? (I checked the file size, and it matches
    the exact number of bytes published on the download page.)
    I'm happy to download the file again, but this is the second copy, and they both
    behave the same!
    Thanks,
    Simon

    Hi, Thanks for the reply,
    The Install appears to work OK, but when I execute
    "jar -tvf weblogic610sp1_generic.zip" I get Zip errors. I'm interested in
    knowing if other apparently successful installs have the same ZipException,
    to try and eliminate the possibility that the file might be corrupted?
    Thanks,
    Simon
    "Michael Young" <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    Definitely sounds like your file is corrupted. This should not be thecase. I downloaded this same file the other
    day and it installed ok for me. Try downloading once more (if you haven'talready done so). If you are still
    having problems then you should open a case with BEA support.
    Thanks,
    Michael
    simon wrote:
    Hi,
    I'm trying to install weblogic610sp1_generic.zip onto redhad linux 7.1.
    I've been having post-install problems (eg files missing) so I want to
    check that
    the zip file is not corrupted. When I try to "jar -tvfweblogic610sp1_generic.zip"
    I initially get a list of files, but then I get a ZipException readingHomeChooser$ButtonSelectionListener.class
    file.
    Does this mean the zip file is corrupted? (I checked the file size, andit matches
    the exact number of bytes published on the download page.)
    I'm happy to download the file again, but this is the second copy, andthey both
    behave the same!
    Thanks,
    Simon--
    Developer Relations Engineer
    BEA Support

  • Fusion Order Demo zip file which works with JDeveloper 11.1.1.3.0

    Hi,
    Please can anyone tell me where to find the Fusion Order Demo zip file that will work with JDeveloper 11.1.1.3.0 (latest version 13/5/10).
    I have downloade OracleXE 10g for Windows on my laptop and now want to create the Fusion Schemas (Tables/Schemas/Procedures etc) for the Demos.
    I have downloaded FOD_11.zip, FusionOrderDemo_R1.zip and tryed the instructiion for running Fusion Order Demo here http://www.oracle.com/technology/documentation/jdev.html but each time I get the error
    "oracle.javacache_11.1.1 not found"
    How can I fix this?
    I want to learn Jdeveloper works and use it for Logical and Physical Schema mapping....
    Thanks
    BP

    Hey John,
    Thanks for the quick reply, and yes sir, I did follow those instructions.
    Let me describe what all I have done so far, maybe someone can figure out where I need to fix anything:
    I installed JDeveloper version 11.1.1.3.0, which came with its own WebLogic server, on my windows xp professional OS on my laptop.
    I then downloaded the zip file, FusionOrderDemo_R1PS2.zip.
    I encountered a problem while unzipping the file, where it was asking me some password for a few files, but Lynn from Oracle helped me figure that out....i had to use 7-zip utility to uninstall....windows default built-in unzip utility does not work.
    After unzipping all files, I followed the instructions given on http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html to import, build and run the application....
    And now when it runs....it just open my browser window (IE 7), and shows a "loading..." image in the center of the page....nothing happens after that.
    Any idea what might be missing?
    a few major errors I see in the wls log window of jdeveloper are:
    1) <DCBindingContainer><reportException> [3952] oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.sql.SQLDataException, msg=ORA-01882: timezone region not found
    2) <DCBindingContainer><reportException> [3958] oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null
    3) <UIXInclude><tearDownVisitingContext> Tear down of include component context failed due to an unhandled exception.java.util.NoSuchElementException
    Please help!
    Regards,
    Hemant

  • Jdeveloper zip file password missed.

    arround 1year before a cd was provided by oracle magazine "Oracle9i Application Server Developer Preview " including Oracle9iAS Containers for J2EE - Developer Preview and Oracle9i JDeveloper - Release Candidate 2
    i had registered for the cd that time and got the password for the zip file of Jdeveloper but now i missed the password. the link given in CD is now i think removed from the site. sending you the link information so that if possible can you send me the zip file password.
    the link for getting the password by filling registration form was "http://www.oracle.com/go/?&Src=1271084&Act=4"

    just i want the oracle software that support the windows XP and win NT, please can u provide this thing

Maybe you are looking for