is it possible to create the connectivity of android with ftp se开发者_开发问答rver. i am going to create an application where login information about user is placed on ftp server.
Yes, there are several libraries that support Android. However, you should be aware that FTP provides no security. So I would be wary about using it for any kind of login information.
You can download this library: commons-net-ftp and use this little example. this will grant you the ability to make ftp connection (like filezila for example) pay attention that you need to add to the menifest file(AndroidManifest.xml) the line
<uses-permission android:name="android.permission.INTERNET" />
Good luck.
精彩评论