我正在尝试从模拟器运行一个 andriod 应用程序,但是每当我发送一个有效的 url 请求时,它都会显示 404 作为状态代码。我有以下代码。
如果我使用
http://10.0.2.2/api/ca/entry/?format=json&username=pragya
从模拟器浏览器,它返回正常。
HttpClient httpclient = new DefaultHttpClient();
HttpGet httppost = new HttpGet("http://10.0.2.2/api/ca/entry/?format=json&username=pragya");
try {
HttpResponse response = httpclient.execute(httppost);
Integer i =response.getStatusLine().getStatusCode();
Toast.makeText(HelloWorldActivity.this, i.toString(), Toast.LENGTH_SHORT).show();
}
编辑......清单文件如下
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.andriod.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HelloWorldActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>