Http Get using Android HttpURLConnection
2022-08-31 14:42:22
我是Java和Android开发的新手,并尝试创建一个简单的应用程序,该应用程序应该联系Web服务器并使用http get向数据库添加一些数据。
当我在计算机中使用Web浏览器进行呼叫时,它工作正常。但是,当我执行在Android模拟器中运行应用程序的调用时,不会添加任何数据。
我已将互联网权限添加到应用的清单中。Logcat 不会报告任何问题。
任何人都可以帮我找出问题所在吗?
下面是源代码:
package com.example.httptest;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
public class HttpTestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
setContentView(tv);
try {
URL url = new URL("http://www.mysite.se/index.asp?data=99");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.disconnect();
tv.setText("Hello!");
}
catch (MalformedURLException ex) {
Log.e("httptest",Log.getStackTraceString(ex));
}
catch (IOException ex) {
Log.e("httptest",Log.getStackTraceString(ex));
}
}
}