Android FTP Server

前端 未结 5 502
抹茶落季
抹茶落季 2020-12-28 23:43

I am using the following code to make the android device a ftp server (Android Internal storage). I am getting the exception of os.android.NetworkOnMainThread.

5条回答
  •  醉梦人生
    2020-12-29 00:08

    You can not do network operation in main thread in android 3.0 higher. Use AsyncTask for this network operation. See this for further explanation

提交回复
热议问题