Problems with apache

I am downloading the ftp file from the server using the Apache library (commons.net ver 3.2). The download was perfect, and I got all the necessary file and saved them in a folder. The problem I encountered is related to timeouts, because when the connection is interrupted during loading, I need an error message that shows me that the connection was lost, but I found difficulties with this, I searched for countless forums, including this one, and I tried many ways to solve this, but no one has a result yet! The code I have is as follows:

public void doSomething(String ip, int port, String user, String pass, String server, String remotePath, String localPath) {
  int tenseconds = 10 * 1000;
  int thirtyseconds = 30 * 3000;
  Socket s4 = new Socket();
  java.net.InetSocketAddress adr = new java.net.InetSocketAddress("213.0.17.234", 21);
  s4.connect(adr, thirtyseconds);
  FTPClient client = new FTPClient();

  org.apache.commons.vfs2.FileSystemOptions fileSystemOptions = null;
  String key = FtpFileSystemConfigBuilder.getInstance().getEntryParser(fileSystemOptions);

  try {

    client.setConnectTimeout(tenseconds);
    client.setDefaultTimeout(thirtyseconds);
    client.connect(ip, port);
    client.setSoTimeout(thirtyseconds);

    int reply = client.getReplyCode();
    if (!FTPReply.isPositiveCompletion(reply)) {
      throw new FileSystemException("vfs.provider.ftp/connect-rejected.error");
    }
    client.enterLocalPassiveMode();
    boolean login = client.login(user, pass);

    URL url = new URL("ftp://" + user + ":" + pass + "@" + server + remotePath + ";type=i");
    URLConnection urlc = url.openConnection();
    urlc.setConnectTimeout(1000);
    InputStream is = urlc.getInputStream();
    BufferedWriter bw = new BufferedWriter(new FileWriter(localPath));

    int c;
    client.setSoTimeout(tenseconds);

    client.setControlKeepAliveTimeout(10000);

    while ((c = is.read()) != -1) {
      urlc.getConnectTimeout();

      bw.write(c);

    }

    long t2 = System.currentTimeMillis();

    System.out.println(t2);

    JOptionPane.showMessageDialog(null, "se cargo el primer fichero!", "información", JOptionPane.INFORMATION_MESSAGE);

    if (login) {

      FTPFile[] files = client.listFiles();
      for (FTPFile file : files) {

        if (file.getType() == FTPFile.DIRECTORY_TYPE) {

          System.out.println("ftp file: " + file.getName() + ";" + FileUtils.byteCountToDisplaySize(file.getSize()));

        } else if (file.getType() == FTPFile.FILE_TYPE) {
          System.out.println("ftp file: " + file.getName() + ";" + FileUtils.byteCountToDisplaySize(file.getSize()));

        }

      }

      is.close();
      bw.close();

      client.setSoTimeout(tenseconds);
      client.logout();
      client.disconnect();

    }

  } catch (IOException e) {
    StringWriter sw0 = new StringWriter();
    PrintWriter p0 = new PrintWriter(sw0, true);
    e.printStackTrace(p0);

    System.out.println("connection probably lost");
    JOptionPane.showMessageDialog(null, "Error: " + e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE);
  }
}

, , , setdefaulttimeout -, connectiontiomeout , getsotimeouts , , . 5 , , , , , connectiontimeouts, socketfactory, factory, , , , . client.setControlKeepAliveTimeout(10000);, -, !:(

+5
1

, URLConnection , FTPClient?

FTPClient retrieveFileStream. , .

0

All Articles