0

该方案是从 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

4

2 回答 2

2

Better you can use method RetrieveFile.

File localFile = new File("/path/XYZ-17012013.pdf");
FileOutputStream fout = new FileOutputStream(localFile);

boolean success = fTPClient.retrieveFile(ftpServerFilePath, fout);

if (success) {
    fout.flush();
    fout.close();
} else {
    System.out.println("Retrieve failure");
}
于 2013-01-17T14:09:07.077 回答
0

看起来您正在从 FTPClient 获取输入流,因此这不是空指针的原因。我的猜测是您忘记初始化字节数组bytes并且它为空。此外,除非您需要将其存储在其他位置,否则您可能不需要在将输入流的内容用作附件之前将其实际转储到文件中。您可能可以直接从内存中的二进制数据创建它。

于 2013-01-17T13:56:14.707 回答