我有一个本地FTP服务器(使用FileZilla服务器创建),并且有很少的XLS文件。我需要将文件输入流返回到我的Java应用程序,以便我可以解析数据等。
为此,我尝试使用FTPClient,但由于某种原因,尝试从文件(大于40KB或者)FTPClient.retrieveFileStream()返回输入流时挂起。
我知道这里有类似的问题,而且我已经读完了所有内容,至少我能找到的所有内容,并没有帮助我。这真的很烦人,如果可能的话,我想要一些帮助。
相关代码部分:
public FTPwrapper(){
ConfigurableApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
Properties props = (Properties) context.getBean("ftp_props");
this.FTPhost = props.getProperty("host");
this.FTPuser = props.getProperty("user");
this.FTPpass = props.getProperty("pass");
this.FTPport = Integer.parseInt(props.getProperty("port"));
this.filesPath = props.getProperty("filesPath");
//start ftp connection
try {
client.connect(this.FTPhost, this.FTPport);
client.login(this.FTPuser, this.FTPpass);
client.setBufferSize(1024 * 1024);
client.enterLocalPassiveMode();
client.setFileType(FTP.BINARY_FILE_TYPE);
} catch (IOException e) {
e.printStackTrace();
}
}
public InputStream returnFileStream(String FileName){
InputStream inputstream = null;
try {
String remoteFile = this.filesPath+FileName;
inputstream = client.retrieveFileStream(remoteFile);
client.completePendingCommand();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (client.isConnected()) {
client.logout();
client.disconnect();
}
} catch (IOException ex) {
ex.printStackTrace();
}
}
return inputstream;
}
public static void main(String[] args){
FTPwrapper ftp = new FTPwrapper();
InputStream inputstream = ftp.returnFileStream("2012 m muzieju statistika.xls");
}
FPT日志:
...login commands...
227 Entering Passive Mode
RETR /vtipsis_data/KT/2012 m muzieju statistika.xls
50 Opening data channel for file download from server of "/vtipsis_data/KT/2012 m muzieju statistika.xls" //Hangs...
ftp连接终于超时后,我得到java异常:
java.io.IOException: Your file contains 383 sectors, but the initial DIFAT array at index 4 referenced block # 505. This isn't allowed and your file is corrupt
at org.apache.poi.poifs.storage.BlockAllocationTableReader.<init>(BlockAllocationTableReader.java:103)
at org.apache.poi.poifs.filesystem.POIFSFileSystem.<init>(POIFSFileSystem.java:151)
at org.apache.poi.hssf.usermodel.HSSFWorkbook.<init>(HSSFWorkbook.java:322)
at org.apache.poi.hssf.usermodel.HSSFWorkbook.<init>(HSSFWorkbook.java:303)
我认为这个例外是因为只返回了部分我的XLS文件输入流。我的问题就是这样。任何想法如何解决这个问题?
答案 0 :(得分:4)
这不是我想要的答案,而是一个必须满足的解决方法......我使用retrieveFileStream
作为临时文件下载文件而不是尝试直接检索流系统文件和转换后的OutputStream,我从retrieveFile
到InputStream。之后我只删除下载的临时文件。
尝试使用retrieveFile
,但它没有与it.sauronsoftware.ftp4j
类似的方法/功能,只能下载文件。
修改强>
我找到了一种在不使用retrieveFileStream
或下载文件的情况下返回文件输入流的方法。由于retrieveFileStream
返回OutputStream,我可以将OutputStream转换为InputStream(为什么我之前没有考虑过这个?),如:
retrieveFile