This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
file size issue when copying zip with commons net api
Rashid Darvesh
Ranch Hand
Joined: Feb 13, 2004
Posts: 189
posted
0
hi, i am using jakarta commons api to copy files from my computer to remote computer. i have two zip file and two tab files. The tab files are fine but the zip files copied over as less in size compared the original. is there any setting i need to do to the FTPClient so that the file size matches after it is copied. This is my code fis = null; fis = new FileInputStream("/syndi/ED_PIC_ENHANCED_N.zip"); ftp.storeFile("ED_PIC_ENHANCED_N_temp.zip",fis); Any help