我正在尝试从模拟器运行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();
}
EDIT ................ 清单文件如下所示
<?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>
答案 0 :(得分:2)
尝试两件事就是解决方案
1 - 检查条目是否在清单android.permission.INTERNET
2-尝试在手机原生浏览器中打开相同的内容
2-a如果开启则没关系
2-b如果没有打开,请在桌面浏览器中尝试该网址
答案 1 :(得分:0)
确保服务器已启动您要连接的应用程序。 More info for http 404