4

我正在尝试开发一个简单的java代码,它将一些内容从本地机器上传到服务器/另一台机器。我使用了下面的代码

import sun.net.ftp.*;
import java.io.*;

public class SftpUpload {
 public static void main(String args[]) {
   String hostname = "some.remote.machine"; //Remote FTP server: Change this
   String username = "user"; //Remote user name: Change this
   String password = "start123"; //Remote user password: Change this
   String upfile = args[0]; //File to upload passed on command line
   String remdir = "/home/user"; //Remote directory for file upload
   FtpClient ftp = new FtpClient();
   try {
      ftp.openServer(hostname); //Connect to FTP server
      ftp.login(username, password); //Login
      ftp.binary(); //Set to binary mode transfer
      ftp.cd(remdir); //Change to remote directory
      File file = new File(upfile);
      OutputStream out = ftp.put(file.getName()); //Start upload
      InputStream in = new FileInputStream(file);
      byte c[] = new byte[4096];
      int read = 0;
      while ((read = in.read(c)) != -1 ) {
         out.write(c, 0, read);
      } //Upload finished
      in.close();
      out.close();
      ftp.closeServer(); //Close connection
   } catch (Exception e) {
      System.out.println("Error: " + e.getMessage());
   }
 }
}

但它在第 11 行显示错误为“无法实例化 FtpClient 类型”。有人可以帮助我如何纠正它。

4

3 回答 3

2

您无法实例化它,因为 sun.net.ftp.FtpClient 是抽象类。

我建议使用 Apache Commons Net 而不是使用 sun.x 包。可以从这里找到 FTP 客户端示例。

于 2012-07-31T11:37:02.900 回答
2

如果您确实想使用 Sun 类,FtpClient.create()请按照该类的 JavaDoc 使用 。

于 2012-07-31T11:37:54.710 回答
0

我已经解决了这个异常。那是因为我的机器连接在一个不允许 FTP 连接的网络中。当我在私人加密狗中尝试它时它起作用了。

于 2012-08-02T10:16:04.420 回答