Results 1 to 1 of 1
- 02-25-2011, 08:08 PM #1
Member
- Join Date
- Jan 2011
- Posts
- 30
- Rep Power
- 0
File Download .zip is downloading weird
I have a program that downloads .zip files to a folder on the computer. here is the code:
It saves the files with the correct name in the correct location, but If I download a .zip with it, Then I try to unzip it, it just extracts "file_name.zip.cpgz" then when I unzip that It is apparently invalid. Other files like png's are fine, but archive files aren't working. Please help!Java Code:public static void fileDownload(String fAddress, String destinationDir, String name) { int slashIndex =fAddress.lastIndexOf('/'); int periodIndex =fAddress.lastIndexOf('.'); String fileName=fAddress.substring(periodIndex); fileName = name+fileName; if (periodIndex >=1 && slashIndex >= 0 && slashIndex < fAddress.length()-1) { fileUrl(fAddress,fileName,destinationDir); } else { System.err.println("path or file name."); } } public static String getFileName(String fAddress, String destinationDir, String name) { int slashIndex =fAddress.lastIndexOf('/'); int periodIndex =fAddress.lastIndexOf('.'); String fileName=fAddress.substring(periodIndex); fileName = name+fileName; if (periodIndex >=1 && slashIndex >= 0 && slashIndex < fAddress.length()-1) { return destinationDir+"/"+fileName; } else { System.err.println("path or file name."); return ""; } }
btw I know that the .zips are valid, because they work fine If I download them through my normal browser.
Similar Threads
-
Weird download file problem
By bubbless in forum Advanced JavaReplies: 12Last Post: 05-28-2010, 03:14 PM -
problem in downloading file from a URL.
By lalit.wientech in forum NetworkingReplies: 11Last Post: 03-26-2010, 12:27 PM -
Downloading a jar file
By jojo in forum Advanced JavaReplies: 2Last Post: 12-15-2009, 11:04 PM -
Downloading a file from web server
By rlaknar in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 07-13-2009, 09:15 AM -
Write access for downloading file.
By Agri in forum Java AppletsReplies: 5Last Post: 09-30-2008, 02:22 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks