使用Apache commons的Java FTP抛出“复制时捕获的IOException”

ht4b089n  于 2023-11-21  发布在  Apache
关注(0)|答案(1)|浏览(312)

我做了一个JavaFX应用程序,其中包括上传大文件(> 1GB)到服务器。每次我在同一个地方得到同样的错误。任何建议,我在这里做错了什么。

  1. ftpclient.connect(server, port);
  2. ftpclient.login(ftpuser, ftppass);
  3. ftpclient.enterLocalPassiveMode();
  4. ftpclient.setKeepAlive(true);
  5. ftpclient.setControlKeepAliveTimeout(3000);
  6. Task<Void> copyMnt = new Task<Void>() {
  7. @Override
  8. protected Void call(){
  9. try {
  10. new Thread(new FTPHandler(ftpclient, source , dest)).run();
  11. } catch (IOException ex) {
  12. Logger.getLogger(MyAppController.class.getName()).log(Level.SEVERE, null, ex);
  13. }
  14. return null;
  15. }
  16. };
  17. new Thread(copyMnt).start();

字符串
现在,在FTPHandler类中

  1. // The constructor will set the ftpclient, source and destinations.
  2. @Override
  3. public void run() {
  4. try {
  5. uploadDirectory(this.getClient(), this.getDest(), this.getSrc(), "");
  6. } catch (IOException ex) {
  7. Logger.getLogger(FTPHandler.class.getName()).log(Level.SEVERE, null, ex);
  8. }
  9. }
  10. public static void uploadDirectory(FTPClient ftpClient,
  11. String remoteDirPath, String localParentDir, String remoteParentDir)
  12. throws IOException {
  13. File localDir = new File(localParentDir);
  14. File[] subFiles = localDir.listFiles();
  15. if (subFiles != null && subFiles.length > 0) {
  16. for (File item : subFiles) {
  17. String remoteFilePath = remoteDirPath + "/" + remoteParentDir
  18. + "/" + item.getName();
  19. if (remoteParentDir.equals("")) {
  20. remoteFilePath = remoteDirPath + "/" + item.getName();
  21. }
  22. if (item.isFile()) {
  23. // upload the file
  24. String localFilePath = item.getAbsolutePath();
  25. java.util.Date date= new java.util.Date();
  26. System.out.println(new Timestamp(date.getTime()) + " : Uploading :: " + localFilePath + " to " + remoteFilePath);
  27. boolean uploaded = uploadSingleFile(ftpClient,
  28. localFilePath, remoteFilePath);
  29. if (uploaded) {
  30. System.out.println("Success : "
  31. + remoteFilePath);
  32. } else {
  33. System.out.println("Failed : "
  34. + localFilePath);
  35. }
  36. } else {
  37. // create directory on the server
  38. boolean created = ftpClient.makeDirectory(remoteFilePath);
  39. if (created) {
  40. System.out.println("CREATED the directory: "
  41. + remoteFilePath);
  42. } else {
  43. System.out.println("COULD NOT create the directory: "
  44. + remoteFilePath);
  45. }
  46. // upload the sub directory
  47. String parent = remoteParentDir + "/" + item.getName();
  48. if (remoteParentDir.equals("")) {
  49. parent = item.getName();
  50. }
  51. localParentDir = item.getAbsolutePath();
  52. uploadDirectory(ftpClient, remoteDirPath, localParentDir,
  53. parent);
  54. }
  55. }
  56. }
  57. }


每次我上传的文件(文件是不同类型的,如.iso,.dat等),前几个文件(上传顺序是像前几百个文件较小,即小于几MB,然后最后10个文件是超过1 GB大)将成功上传(即所有较小的文件和最后10个文件中的2个),但当它开始上传第三个大文件时,我得到以下异常。

  1. SEVERE: null
  2. org.apache.commons.net.io.CopyStreamException: IOException caught while copying.
  3. at org.apache.commons.net.io.Util.copyStream(Util.java:134)
  4. at org.apache.commons.net.ftp.FTPClient._storeFile(FTPClient.java:653)
  5. at org.apache.commons.net.ftp.FTPClient.__storeFile(FTPClient.java:624)
  6. at org.apache.commons.net.ftp.FTPClient.storeFile(FTPClient.java:1976)

0x6upsns

0x6upsns1#

CopyStreamException有一个“cause”异常。使用.getCause()检查一下,看看出了什么问题。
参见Util.copyStream方法:

  1. public static final long copyStream(InputStream source, OutputStream dest,
  2. int bufferSize, long streamSize,
  3. CopyStreamListener listener,
  4. boolean flush)
  5. throws CopyStreamException
  6. {
  7. int bytes;
  8. long total = 0;
  9. byte[] buffer = new byte[bufferSize >= 0 ? bufferSize : DEFAULT_COPY_BUFFER_SIZE];
  10. try
  11. {
  12. while ((bytes = source.read(buffer)) != -1)
  13. {
  14. ....
  15. }
  16. }
  17. catch (IOException e)
  18. {
  19. throw new CopyStreamException("IOException caught while copying.",
  20. total, e);
  21. }
  22. return total;
  23. }

字符串
uploadSingleFile函数中,

  1. try
  2. {
  3. ftpClient.storeFile(...)
  4. }
  5. catch (Exception e)
  6. {
  7. e.printStackTrace();
  8. if (e.getCause() != null)
  9. {
  10. e.getCause().printStackTrace();
  11. }
  12. }

  • 我不懂Java,所以代码可能不是100%正确。

另请参阅Getting full string stack trace including inner exception

展开查看全部

相关问题