Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't connect from Emulator to local FTP on my PC. Please help!!! My Emulator can connect to localhost with IP 10.0.2.2, but can't use it to connect to FTP Server, which is created with IIS, windows 7. Here's my source, I use library org.apache.commons.net:

File Connection.java:

public class Connection {
    private static final String TAG = null;
    public FTPClient mFTPClient = null;
    public boolean ftpConnect(String host, String username, String password, int port) {
        try {
            mFTPClient = new FTPClient();
            mFTPClient.connect(host, port);
            if (FTPReply.isPositiveCompletion(mFTPClient.getReplyCode())) {
                boolean status = mFTPClient.login(username, password);
                mFTPClient.setFileType(FTP.BINARY_FILE_TYPE);
                mFTPClient.enterLocalPassiveMode();
                Log.d(TAG, "Connect to " + host + " succesfully");

                return status;
            }
        } 
}

File MainActivity.Java:

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Connection con = new Connection();
        con.ftpConnect("10.0.2.2","anonymous","anonymous",21);
        Toast.makeText(this, "Connect Successfully",Toast.LENGTH_LONG).show();
    }

}

Error log:

11-06 19:39:50.900: D/AndroidRuntime(1006): Shutting down VM
11-06 19:39:50.900: W/dalvikvm(1006): threadid=1: thread exiting with uncaught exception (group=0x40a13300)
11-06 19:39:50.950: E/AndroidRuntime(1006): FATAL EXCEPTION: main
11-06 19:39:50.950: E/AndroidRuntime(1006): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.ftpdownload/com.example.ftpdownload.MainActivity}: android.os.NetworkOnMainThreadException
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread.access$600(ActivityThread.java:130)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.os.Handler.dispatchMessage(Handler.java:99)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.os.Looper.loop(Looper.java:137)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread.main(ActivityThread.java:4745)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at java.lang.reflect.Method.invokeNative(Native Method)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at java.lang.reflect.Method.invoke(Method.java:511)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at dalvik.system.NativeStart.main(Native Method)
11-06 19:39:50.950: E/AndroidRuntime(1006): Caused by: android.os.NetworkOnMainThreadException
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1117)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at libcore.io.BlockGuardOs.connect(BlockGuardOs.java:84)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at libcore.io.IoBridge.connectErrno(IoBridge.java:127)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at libcore.io.IoBridge.connect(IoBridge.java:112)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:192)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:459)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at java.net.Socket.connect(Socket.java:842)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at org.apache.commons.net.SocketClient.connect(SocketClient.java:171)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at org.apache.commons.net.SocketClient.connect(SocketClient.java:192)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at com.example.ftpdownload.Connection.ftpConnect(Connection.java:25)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at com.example.ftpdownload.MainActivity.onCreate(MainActivity.java:15)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.Activity.performCreate(Activity.java:5008)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
11-06 19:39:50.950: E/AndroidRuntime(1006):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
11-06 19:39:50.950: E/AndroidRuntime(1006):     ... 11 more

Attention: I added on file Manifest.xml

<uses-permission android:name="android.permission.INTERNET"/>
share|improve this question
i had the same issue... i found the suggestion in one of the topics to do FTP connection on separate thread very useful... hope it helps.link given below.. stackoverflow.com/questions/13806394/… – user1859394 Jan 9 at 21:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.