私は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で「クリーン」オプションも試しましたが、同じ問題が発生しました。
何か不足していますか?