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

Similar Messages

  • 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

  • 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

  • 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

  • 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.

  • 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

  • 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

  • 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

  • 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.

  • How to download and open zip file

    Download cannot be done

    Hi ratan45,
    Does your device support the file type? There are some zip tools in the Google play store that would be helpful with unzipping.
    However if it cannot download please try this:
    #[http://www.vbaccelerator.com/home/VB/Code/vbMedia/Audio/Lossless_WAV_Compression/Sample_APE_File.asp] click on the sample zip file
    # go to about:downloads and click on the file
    # Select a app that can open zip files on your device (please find one on Google play if you do not have one)
    Do you have an example url where this is not happening?

  • 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.

  • 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.

  • ZIP files corrupted after downloading

    after downloading the image files for Sample ADF Fusion Web Development which is mentioned in Oracle 11g, the zip file does not open. please suggest me what I can do?

    Hi;
    after downloading the image files for Sample ADF Fusion Web Development which is mentioned in Oracle 11g, the zip file does not open. please suggest me what I can do?If your zip is corrupted than you have to redownload related file,i suggest use some download manager while u are making download
    Regard
    Helios

Maybe you are looking for

  • Mbean Error While Creating Resource Adapter

    Hi, During the post installation configuration of Oracle Identity Manager, I had to create Resource Adapter as mentioned in the steps below. In the final step, when I click OK, I’m getting an error message “An error has occurred. MBean not found” (I

  • QT Mpeg2 playback component doesnt work

    Installed the component and nothing works. Quicktime will not open any type of mpeg2 file. says its unsupported file type. Any body else have this issue? I have latest QT and newest component from store.

  • Problems with Fact Table in an Infocube

    In IC 0CCA_C11 we've seen almost a 50% increase in the row count on the F fact table from about 100 million rows to about 150 million rows.   However we are very certain that we really havent had that much growth. We have a process chain that does a

  • How to configure Remort Printing in Oracle 10g

    Hi, I want to configure orarrp utility in my oracle 10g oracle application server. Can any one help to install the utility and please let me know what are the Pre request to install that. I hope I need to change the httpd.conf file in oracle applicat

  • Backup to tape

    Sql 2012 maintainence plan has an option to backup to tape. Does this work even if Windows 2012 does not support backup to tape. Can we use this method to bcakup SQL database directly to tape, what are the advantages or drawback of these ?