gpt4 book ai didi

java httpclient返回404作为响应码

转载 作者:行者123 更新时间:2023-11-29 22:04:36 25 4
gpt4 key购买 nike

我正在尝试从模拟器运行一个 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();
}

编辑................ list 文件如下

<?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>

最佳答案

尝试两件事,一个应该是解决方案

1 - 检查 list android.permission.INTERNET 中是否有条目

2- 尝试在手机 native 浏览器中打开相同

  • 2-a 如果打开就没问题

    2-b 如果无法打开,请在桌面浏览器中尝试该 url

关于java httpclient返回404作为响应码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11045358/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com