I have a file that can be any thing like( zip,rar,txt,csv,doc...) i would like to create ByteArrayInputStream from it. I'm using it to upload file to ftp through FTPClient commons Apache.
Does any body know how to do it?
for example:
String data = "hdfhdfhdfhd";
ByteArrayInputStream in = new ByteArrayInputStream(data.getBytes());
my code:
public static ByteArrayInputStream reteriveByteArrayInputStream(File file){
ByteArrayInputStream in;
return in;
}
FileInputStream, no? – Louis Wasserman Jun 27 '12 at 10:33