0

私はAndroid開発とEclipse Junoバージョンが初めてです.xml解析を試しています。実行行をデバッグして xml を取得すると、次のエラーが発生します。

// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
//Below Line Shows the Source not found error.
HttpResponse httpResponse = httpClient.execute(httpPost);

エラー:

Class File Editor
Source not found
The source attachment does not contain the source for the file DefaultRequestDirector.class.

You can change the source attachment by clicking Change Attached source below:

Change Attached Source...

The source attachment does not contain the source for the file DefaultRequestDirector.class.

しかし、パッケージ Android 4.1==>org.apache.http.impl.client で DefaultRequestDirector.class を確認できました。Cmd + Shift + Oキーの組み合わせで試し、Eclipseで「クリーン」オプションも試しましたが、同じ問題が発生しました。

何か不足していますか?

4

1 に答える 1

0

次のコードを試してください...それが役立つかどうかを確認してください:

HttpClient httpclient = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(httpclient.getParams(), 10000);
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
于 2012-09-24T06:10:11.603 に答える