gosr
gosr

Reputation: 4708

Retrieving content of a txt file from URL to Android

I would like to be able to retrieve contents of a .txt file from the internet, and load it in an EditText. I tried using the code on this page: Reading Text File From Server on Android

It didn't work, as you might have guessed. I've read on numerous sites about this type of problem, but I can't get anything to work. Someone suggested AndroidHttpClient but I simply can't find any examples with this.

As I'm a newbie in Android programming, I would love if someone could please give me a small example.

Upvotes: 1

Views: 1269

Answers (1)

skyler
skyler

Reputation: 8348

This isn't so much of an Android question as it is a Java question. There are a few ways you could go about doing this, but the simplest might be using java.net.HttpURLConnection.

Upvotes: 1

Related Questions