Reputation: 5379
is it possible to create the connectivity of android with ftp server. i am going to create an application where login information about user is placed on ftp server.
Upvotes: 0
Views: 676
Reputation: 355
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.
Upvotes: 0
Reputation: 284786
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.
Upvotes: 1