I\'m trying to send a GET request using HttpClient, but I keep getting an IllegalStateException. Any idea what\'s causing this? I\'ve
GET
HttpClient
IllegalStateException
When you do this:
HttpGet getData = new HttpGet(this.address);
what exactly is this.address? I'm assuming it is a String, if so it needs to look like this:
this.address
String
String address = "http://www.google.com/path/to/document";
You've probably done this:
String address = "google.com";