gpt4 book ai didi

java - UnknownHostException(网络服务 http-get)

转载 作者:行者123 更新时间:2023-11-30 04:31:57 29 4
gpt4 key购买 nike

我有这个简单的代码,可以访问网络服务。由于某种原因,它无法连接并在日志中给出错误 unknownHostException

这是代码:

String URL = "http://services.sapo.pt/EPG/GetChannelList";
String result = "";
final String tag = "Data received: ";

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final Button btnSearch = (Button)findViewById(R.id.btnSearch);
btnSearch.setOnClickListener(new Button.OnClickListener(){
public void onClick(View v) {
callWebService();
}
});

} // end onCreate()

public void callWebService(){
HttpClient httpclient = new DefaultHttpClient();
HttpGet request = new HttpGet(URL);
ResponseHandler<String> handler = new BasicResponseHandler();

try {
result = httpclient.execute(request, handler);
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

httpclient.getConnectionManager().shutdown();
Log.i(tag, result);
}

这是我的 list 的一部分

<permission android:name="android.permission.INTERNET"/>

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".AndroidApp"
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>

最佳答案

我找到了解决方案。我使用 GUI 将互联网权限放在 list 中, list 中添加了标签

<权限android:name"android.permission.INTERNET"/>

然后我手工放置了正确的标签:

< 使用权限 android:name="android.permission.INTERNET"/>

这是一个不同的标签,它起作用了。 GUI 失败。

关于java - UnknownHostException(网络服务 http-get),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7544654/

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