Sorry I'm new in the world java and android.
I would like to understand why it always responds error.
Thank you!
try {
HttpClient client = new DefaultHttpClient();
String getURL = "http://www.google.com";
HttpGet get = new HttpGet(getURL);
HttpResponse responseGet = client.execute(get);
HttpEntity resEntityGet = responseGet.getEntity();
if (resEntityGet != null) {
Toast.makeText(getApplicationContext(), "ok", Toast.LENGTH_LONG).show();
}
} catch (Exception e) {
//e.printStackTrace();
Toast.makeText(getApplicationContext(), "error", Toast.LENGTH_LONG).show();
}
Import
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
and yes and I entered permission internet
package="com.example.testhttp"
android:versionCode="1"
android:versionName="1.0" >
android:minSdkVersion="8"
android:targetSdkVersion="17" />
Answer
seems to be like you are trying to make an http
request in the UI thread.
put your request in another thread.
No comments:
Post a Comment