通过FTP以Java方式上传文件

时间:2012-07-31 11:31:57

标签: java upload ftp

我试图开发一个简单的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'。 有人可以帮助我纠正它。

3 个答案:

答案 0 :(得分:2)

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

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

答案 1 :(得分:2)

如果你想要使用Sun类,请按照此类的JavaDoc使用FtpClient.create()

答案 2 :(得分:0)

我已经解决了exception.thats,因为我的机器连接的网络不允许FTP连接。当我在私有加密狗中尝试它时,它有效。