我有一个文件,可以是 ZIP、RAR、txt、CSV、doc 等任何文件。我想从中创建一个ByteArrayInputStream。我正在使用它通过Apache Commons Net的FTPClient
将文件上传到 FTP 。
有人知道怎么做吗?
例如:
String data = "hdfhdfhdfhd";
ByteArrayInputStream in = new ByteArrayInputStream(data.getBytes());
我的代码:
public static ByteArrayInputStream retrieveByteArrayInputStream(File file) {
ByteArrayInputStream in;
return in;
}