在我的应用程序中,我想使用ftp上传视频。我在我的应用程序中包含了apache.commons.net
库。当我运行代码时,它会显示04-28 14:56:05.229: ERROR/dalvikvm(739): Could not find class 'org.apache.commons.net.ftp.FTPClient', referenced from method net.jeema.hwdvideoshare.NewVideoActivity$loadVideo.doInBackground
。
如何解决这个问题?我使用以下代码:
protected Void doInBackground(Void... arg0) {
String hostName = "ftp.host.net";
String username = "test";
String password = "test";
String location = selectedPath;
InputStream in = null;
try {
FTPClient ftp = new FTPClient();
ftp.connect(hostName);
ftp.login(username, password);
ftp.setFileType(FTP.BINARY_FILE_TYPE);
ftp.changeWorkingDirectory("/uploads");
int reply = ftp.getReplyCode();
System.out.println("Received Reply from FTP Connection:" + reply);
if (FTPReply.isPositiveCompletion(reply)) {
System.out.println("Connected Success");
}
File f1 = new File(location);
in = new FileInputStream(f1);
ftp.storeFile(fname, in);
System.out.println("SUCCESS");
ftp.logout();
ftp.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
答案 0 :(得分:0)
当你链接de lib时,你必须引用它,并标记为可用的。
也许你忘记了两个步骤之一?
打开应用程序的“属性”对话框,导航到“Java Build Path” - >“Libraries”并添加引用。 导航到“Java Build Path” - >“Order and Export”并选择导出两个jar。