Tushar Chutani
Tushar Chutani

Reputation: 1560

logging into a website using java?

I am working on an Android application. I just started on android development and wanted to know if some how it is possible to log into a website using java. Is there is library or API for achieving something like that?

thanks

Upvotes: 0

Views: 213

Answers (2)

Last Warrior
Last Warrior

Reputation: 1307

Actually you want to connect with remote database and Yes there are Apache Libraries for connecting Database.

http://blog.sptechnolab.com/2011/02/10/android/android-connecting-to-mysql-using-php/

Hope this will work for you....Enjoy your Cooked Cake

Upvotes: 1

jslagle
jslagle

Reputation: 81

The apache httpclient can make web requests. Using this, you should be able to make your program log into a website.

More information can be found here:

http://hc.apache.org/httpclient-3.x/

Upvotes: 2

Related Questions