Unzip problem for psoracle816nt.zip (PO8i)

i downloaded psoracle816nt.zip (Personal Oracle 8i) to install on my win2000 machine. when i tried to unzip the file with WinZip, it told me that the file may be corrupted and to dl it again. after i downloaded the file again, i encountered the same problem.
does anyone know if winzip is the right unzip utility? Thanks, Jason.

Hii Guys ,one more prb,
I need to develop a file uploading utility in struts to upload ZIP files(only ZIP), and i sucseeded to do it using the commons.fileupload which comes along with the WSAD5.1(examples), but the prb is i need to chek for the MIME type and need to reject if its not a zip file, if i do this in actionclass, its waiting till the uploading process of the file is finished and finally its displaying file is not the a ZIP, i need to do this validation as the request comes to the server side, i cant not do this in clint side cause my design should not allow me to use any java script..so please let me know is there any way to specify in the controller it self .
thanx in advance

Similar Messages

  • Command for Unzipping a password protected zip file in Solaris

    Hi,
    I got a requirement where I need unzip a password protected zip file using java in Solaris.I tried with
    unzip -P but it is not working in India and Australia (may be I need to download some patch). Can any one help me to find out the solution.
    Thanks
    Naresh

    Hi peterchun,
    Thanks for your reply.
    I was trying with correct password only but my Solaris is not able to recognize unzip -P command. Can you please let me know whether I need to install any patch on Solaris (my Solaris version is 9) for this command.
    Basic requirement: password protected zip files comes to our application and those need to be unzipped to one particular location. As we are using JAVA/J2EE in our application, Can you please suggest any UNIX command (with example) for this requirement will be great.
    Thanks,
    Naresh

  • Zip Utils (unzip problem )

    Hi,
    I have a problem with the ZIP, so i an array of bytes ziped in my database without problem,but after when i try
    to extract this information i must to unziped it , the problem is that the unzip method replace the char "�" by
    another char that cause a not well formedness of my xml file produced .
    So if there is any solution to resolve this problem .
    Thanks.

    public static byte[] zip(byte[] input) throws IOException {
    // Create the compressor with highest level of compression
    Deflater compressor = new Deflater();
    compressor.setLevel(Deflater.BEST_COMPRESSION);
    // Give the compressor the data to compress
    compressor.setInput(input);
    compressor.finish();
    // Create an expandable byte array to hold the compressed data.
    // You cannot use an array that's the same size as the orginal because
    // there is no guarantee that the compressed data will be smaller than
    // the uncompressed data.
    ByteArrayOutputStream bos = new ByteArrayOutputStream(input.length);
    // Compress the data
    byte[] buf = new byte[BUFFER];
    while (!compressor.finished()) {
    int count = compressor.deflate(buf);
    bos.write(buf, 0, count);
    try {
    bos.close();
    } catch (IOException e) {
    // Get the compressed data
    return bos.toByteArray();
    public static byte[] unzip(byte[] compressedData) throws IOException {
    // Create the decompressor and give it the data to compress
    Inflater decompressor = new Inflater();
    decompressor.setInput(compressedData);
    // Create an expandable byte array to hold the decompressed data
    ByteArrayOutputStream bos = new ByteArrayOutputStream(compressedData.length);
    // Decompress the data
    byte[] buf = new byte[BUFFER];
    while (!decompressor.finished()) {
    try {
    int count = decompressor.inflate(buf);
    bos.write(buf, 0, count);
    } catch (DataFormatException e) {
    try {
    bos.close();
    } catch (IOException e) {
    // Get the decompressed data
    return bos.toByteArray();

  • Unzip Xtra for Mac

    Hi All,
    I am developing a hybrid application which receives updates
    in ZIP from the web. Windows is no problem. I am using the bundled
    Unzip Xtra in Director. The problem is that, the file and folder
    names in the bundled updates, sometimes are more than 32 characters
    long. As a result, the Unzip xtra on Mac will truncate the
    file/folder names to under 32 characters thus ruining my updates. I
    searched for an Unzipping xtra for Mac but could ot find any that
    would allow for unzipping more than 32 character long file/folders.
    Any ideas how do I proceed with this?
    Thanks in advance.
    Nitin.

    Andrew Morton wrote:
    >> Can anyone please tell me if there is a MAC OSX xtra
    that can unzip
    >> files, I'm developing a cross platform project and
    it will need to
    >> unzip a file. I have budUnzip doing the job on PC.
    >
    > You could try baRunProgram (from the buddyAPI xtra) to
    run gzip to
    > unzip files. OSX comes with gzip.
    Go with Luke's idea - baRunProgram on a Mac doesn't take
    command line
    arguments, although I'm not sure OS X comes with unzip - two
    I just checked
    didn't (OS X 10.3 and 10.4). Gzip is pretty much a certainty.
    Andrew

  • Problem installing 10_Recommended.zip

    Has anyone dowloaded the above Recommended & Security Patches from sunsolve? When trying to unzip the file I am getting the below error message:
    # unzip 10_Recommended.zip
    Archive: 10_Recommended.zip
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    note: 10_Recommended.zip may be a plain executable, not an archive
    unzip: cannot find zipfile directory in one of 10_Recommended.zip or
    10_Recommended.zip.zip, and cannot find 10_Recommended.zip.ZIP, period.
    I have tried downloading this file multiple times and even renaming it to .gunzip, .tar, etc and nothing works. Any suggestions will be greatly appreciated.
    Thx!
    DY

    At the download page for the Recommended patch clusters there is a disclaimer which you should read. It points to a potential unzip problems which is explained further in infodoc 252447.
    The infodoc clearly states that the symptom in question is due to a limitation in unzip, which is fixed with the following patches:
    Solaris 10: (SPARC) patch 119254-63 or later; (x86) patch 119255-63 or later.
    Solaris 9: (SPARC) patch 112951-14 or later ; (x86) patch 114194-11.
    Solaris 8: (SPARC) patch 108987-19 or later ; (x86) patch 108988-19.
    Ensure that you have the appropriate patch and try again..
    Even though sun would make our life easier by providing checksums to the clusters.
    .7/M.

  • Odf-converter, mono and unzip problems

    Hi, I'm having problems getting the odf-converter from the AUR to work. Seems it's some kind of problem with the unzip. I have the listed dependencies installed (libzip, glib2). Am I missing some settings, do need to setup my Mono install somehow (all I did was pacman -S mono)? Or is it a bug in the source packages?
    Here's the output I'm getting:
    ogi@ogi-laptop:~$ odf-converter some_doc.xlsx /LEVEL 1
    [INFO][some_doc.xlsx] Converting file: some_doc.xlsx into some_doc.ods
    [ERROR][some_doc.xlsx] Conversion failed - Error during conversion
    [DEBUG][some_doc.xlsx] unzOpen( at (wrapper managed-to-native) CleverAge.OdfConverter.OdfZipUtils.ZipLib:unzOpen (string)
    at CleverAge.OdfConverter.OdfZipUtils.ZlibZipReader..ctor (System.String path) [0x00000]
    at CleverAge.OdfConverter.OdfZipUtils.ZipFactory.OpenArchive (System.String path) [0x00000]
    at CleverAge.OdfConverter.OdfConverterLib.ZipResolver..ctor (System.String filename) [0x00000]
    at CleverAge.OdfConverter.Spreadsheet.Converter.CheckOoxFile (System.String fileName) [0x00000] )
    Done.

    Resurrecting this old thread on purpose.
    Did anybody ever solve this? I'm the owner of the odf-converter AUR package, and I just tried to actually use it for the first time. It's now on 3.0, and was no newer than 2.0 when the above posts were written. I'm surprised that it still fails the same way.
    I wonder if this is a 64-bit problem. The zip code in the source package is shipped as a 32-bit Windows binary. Can somebody verify?
    Can somebody at least explain what the error says? I'm unfamiliar with Mono and have only the most basic C# skills.

  • Problems installing VadoCentral_MAC_APP_LA_1_2_3.zip on Mac

    Problems installing VadoCentral_MAC_APP_LA__2_3.zip on Mac? Preamble: st gen Vado HD
    macbook pro running OS X Snow leopard 0.6.2
    I'm having a tough time installing the Vado Central SW on my Mac. I tried installing VadoCentral_MAC_APP_LA___0_df6, too. Similar results with both, I get a message "Installation failed."? This comes as no surprise since my mac never installs anything without prompting for an administrator login. So, I ignored the instructions to plug in the Vado after the installation was complete, and plugged it in and tried re-installing the software with the Vado as the installation destination.... which makes sense since it seems to run the Windows Vado Central from the Vado. VadoCentral_MAC_APP_LA__2_3.zip would not let me select any device except the mac hard dri've.
    With VadoCentral_MAC_APP_LA___0_df6 I was able to install change the install location to the Vado HD device. It appears to have created an applications folder containing Vado Central.app. But, now when I plug in the Vado, it still automatically starts iPhoto. If I browse the Vado and double click the Vado Central.app, OS X first prompts, asking me if I want to install the application to the local computer. Click "No", then I get prompted that Vado Central rquires the flv2ITunes transcorder downloaded and installed. Click "Yes", then I'm prompted that a newer version of Vado Central is available, "Do you want to download...", click "Yes". It downloads and installs somewhere, but apparently not on the Vado, because it puts me through all of this every time. Whatever/whereever the software is being updated, it's not changing the Vado Cental.app on the Vado, based on the timestamp.
    Can somebody provide the correct installation instructions? The minimal instructions on the Creative download page appear to be wrong. (I've looked at the other threads complaining about the mac installation, they don't seem to match my experience.)
    TIA

    I have a Vado HD 2nd generation. I use it exclusi'vely on my MacBook.
    The firmware version that my Vado came with is "v.250.
    I found out the version on my unit by holding down the Delete button
    while turning the unit on.
    Is it possible that your unit is not installing v.23 because your unit already has a later version?
    Hope this helps.

  • How to set password for a zip file and should be checked when reading that

    Hi friends,
    how to set password for a zip file and should be checked when reading that file???
    thanks.
    Praveen Reddy.J

    Heyy man, i think, u did not get my problem.
    all i have to do is:
    i have to create a zip file, and we should secure it with password when creating. and whenever the user wants to open that zip file he should provide correct passowrd otherwise he could not read that file. So, we should check for that also.
    Tanks for reply.

  • Download Problem for Oracle9i Developer Suite Release 2

    Hi,
    I have been trying to download Oracle9i Developer Suite Release 2 from http://otn.oracle.com/software/products/ids/htdocs/winsoft.html
    There are two zip files
    1. A99230-01.zip (606,797,721 bytes)
    2. A99231-01.zip (207,292,517 bytes)
    I was able to download (2) completely and is able to extract files from the Zip format. But after trying 4-5 times downloading the (1) still I am unsuccessful.
    After the files download reaches somewhere around 250,000,000 bytes it says the download is complete but when I try to open the Zip files, it says the Zip is invalid. Is there any problem with the Zip that is uploaded to this site. How can I solve this problem.
    Is it possible for me to get the Free S/w on CDs like we used to get for forms 6i through OTN site? If so where should I register for the same?
    thanks in Advance
    Anil Krishnan

    It seems that it is only possible to start download of two files at a time. If you try to start more, the system hangs up. If you are trying to download the version that is split in ten files, you have to do this one file at a time. If you are trying to download a single file, make sure that this is the ONLY download session that is running on your computer.
    Yours sincerely
    Niels Terp

  • Unzip utility for BI SE one

    Hi,
    I have downloaded two parts for BE SE one from:
    http://www.oracle.com/technology/software/products/ias/htdocs/101321biseone.html
    I have two files in one directory:
    biseone_windows_x86_101321_dvd.zip
    biseone_windows_x86_101321_dvd.z01
    I try unzip from MKS toolkit, unzip from Oracle EBS, native unzip from Windows, WinRar, but I cannot extract the .z01 file.
    I go also to: http://updates.oracle.com/unzips/unzips.html
    and
    http://www.info-zip.org/
    but I cannot find unzip utility for Windows.
    Please help me with which utility I should unzip them?
    Thank you.

    please give that one one more chance...

  • Unzipping files from a zipped folder

    Hi,
    I need unzip files stored in .zip folder using ABAP. Could you please tell me of a utility/Funtion Module or any other method which exists for the same?
    Thanks a lot
    Shujath

    Hi Mohammed,
    you just have to execute an external program from your ABAP.
    For example, if the ZIP file is in the client computer you have to use the WS_EXECUTE.
    Have fun
    Frédéric

  • 8i Personal Ed. R3 V8.1.7 for Win98 zip has dupe files

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    PSORACLE81798.ZIP
    - Date/Time
    6/26/02 22:00
    - Browser + Version
    Internet Explorer 5.5
    - O/S + Version
    Win 98
    - Error Msg
    None
    The 8i Personal Ed. R3 V8.1.7 for Win98 zip file has duplicate filenames.
    This is a real pain to choose the latest version of the file.
    The pkzip extract option to skip older files does not choose the most current version.
    Why does the zip file contain duplicates???
    It should just have the most current version of the file. What a PAIN!

    I realized that my PKZIP Extract options were not correct.
    One MUST enable USE FOLDER NAMES otherwise it puts all files in one directory, and cannot find them.

  • Is anybody has the example problem for AD/DA converter controled by PIC16F84?

    In my circuit( Multisim 9), I use PIC16F84 as the
    MCU to control the DAC and ADC. I want to ask if anyone has the example
    problem for the controlling?
    Further more, the I/O port of
    PIC16F84 seems can not be connected with the digital output of DAC, so
    I asked myself, is it right that for PIC16F84, the I/O port can only
    connected with the serial port of DAC and ADC? Or it needs a converter
    to adapt to the  input  port of DAC?
    Looking for any help! Thanks!

    You can test the new Design Circuit Suite (includes Multisim10 with MCU10 and Ultiboard 10 with Ultiroute10). When you open Samples you find the folder MCU with PIC folder. In these you can find some examples to PIC16F84. With that as pattern you should solve the problem.
    I attached you here the MCU examples in the *.zip
    For downloading the 30 days free test version you can use the link:
    http://www.ni.com/academic/multisim/ and click to evaluation software
    or these link:
    https://sine.ni.com/apps/utf8/nigb.confirm?p_gb_prof_id=7350&p_lang=US&p_dl_url=&p_dwnld=N&p_code=GB...
    Attachments:
    MCUPicScreenshot.zip ‏964 KB

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • Hi team , I have some questions/Problem for my product apple (iPad,iPhone) , I want to employee speak and type thai language

    Hi team , I have some questions/Problem for my product apple (iPad,) , I want to employee that can  speak  or response me in thai language
    1. ผม อาคเนย์  พำนักอยู่ประเทศไทย กรุงเทพฯ  มีปัญหาสอบถาม ดังต่อไปนี้
       - กระผมได้ทำการตัดบัตร เครดิต เพื่อซื้อเกมส์ผ่าน itune store ผ่าน apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ในวันที่18 ก.ค. 56 เวลา 17.07น. ซึ่งทางบัตรเครดิตได้แจ้งเรียกเก็บเงินมายอดเงิน 39.99$ ซึ่งในระบบจริงๆ ทางกระผมต้องการตัดในยอด 99.99$ แต่พอได้ประสานงานไปยังธนาคาร ได้รับการแจ้งกลับมาว่า ได้ทำการตัดบัตรในยอดเงิน 39.99$ ซึ่งในความเป็นจริงนั้น กระผมไม่ได้สั่งซื้อเกมส์ในยอด 39.99$ ซึ่งในยอด 99.99$ นั้นพยายามตัดในระบบบัตรเครดิตอยู่ แต่ทางกระผมได้ยืนยันกลับไปว่าไม่ให้ระบบตัดนะครับ เพราะว่าเนื่องจากมีปัญหาในการชำระเงินระหว่าง Apple itune store อยู่
       - ทั้งนี้ขอให้ทางเจ้าหน้าที่ประสานงานตรวจสอบ apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ตามที่ได้ให้รายละเอียดโดยด่วนว่าเป็นเพราะว่าระบบมีปัญหาหรือว่ามีอะไรเกิดขึ้นในข ั้นตอนการชำระเงินครับ
    รบกวนประสานงานกลับมายังกระผม อาคเนย์ ที่หมายเลขโทรศัพท์มือถือ +**** / reply feedback  email : lekod1@*** โดยด่วน ในวันศุกร์ที่ 19 ก.ค. 2556 ครับ
    ขอบคุณครับ
    อาคเนย์  อุดปิน
    กด
    <Edited By Host>

    Google translation:
    พนักงานของ iTunes Store จะไม่ได้อ่านข้อความในเว็บบอร์ดนี้ ถ้าคุณต้องการความช่วยเหลือสำหรับปัญหาที่มีใน iTunes Store, คุณจะต้องติดต่อกับพวกเขาผ่านทางแบบฟอร์มเว็บนี้:
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for