该方案是从 ftp 服务器获取文件并作为电子邮件附件发送。我想使用“org.apache.commons.net.ftp.FTPClient”从 FTP 服务器获取有关连接、文件名成功的文件。但我不知道如何正确转换为文件。
这是我的代码:
FTPClient ftp = new FTPClient();
byte bytes[]=new byte[1024];
int read = 0;
//connection,filename --success
StringBuffer str = new StringBuffer("MyFiles");
str.append("-XYZ-");
str.append(new SimpleDateFormat("ddMMyyyy").format(new Date()));
str.append(".pdf");
System.out.println("getting file --> "+str.toString());
System.out.println("getting stream ftp -->"+ ftp.retrieveFileStream(str.toString()));
InputStream input = ftp.retrieveFileStream(str.toString());
ByteArrayOutputStream out = new ByteArrayOutputStream();
while ((read = input.read(bytes)) != -1) { --> null pointer line 503
out.write(bytes,0,read);
}
File temp = null;
temp = new File(str.toString());
Utils.convertByteArrayToFile(temp, out.toByteArray());
public static void convertByteArrayToFile(File outputFile, byte[] inputArray) throws IOException{
BufferedOutputStream bos=null;
try{
FileOutputStream fos=new FileOutputStream(outputFile);
bos=new BufferedOutputStream(fos);
bos.write(inputArray);
}finally{
if(bos!=null){
try{
bos.flush();
bos.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
}
结果是..
获取文件 --> MyFiles-XYZ-17012013.pdf
获取流 ftp --> org.apache.commons.net.io.SocketInputStream@409db838
com.java.EmailForm.sendEmail 处的 java.lang.NullPointerException(EmailForm.java:503)
有任何想法吗 ?谢谢 MRizq