我一直在 android 2.1 上测试 Apache commons API 3.1,到目前为止运行良好。现在我试图在 Android ICS(4.0) 上使用它,但我遇到了一个问题:当我使用“ftp.connect”命令时,应用程序抛出了一个未处理的异常
这里只是一个简单的代码,只是为了显示应用程序何时崩溃:
FTPClient ftp = new FTPClient(); //so far is ok
try {
ftp.connect("127.0.0.1",21); //<-throws a unhandled exception (used to work on android 2.1)
} catch (Exception e){
Log.e("error",e.getMessage());// it doesn't reach this block
}
这就是我的 logCat 中的内容:
W/dalvikvm(1105): threadid=1: thread exiting with uncaught exception (group=0x409961f8)
有谁知道发生了什么?