サーバー上のURLからフィードを取得するために非同期タスク内で関数を実行していますが、インターネット接続がない場合はエラーメッセージが表示されてアプリケーションが停止します。
これを処理する方法がわかりません、とにかくここに私のコードがあります
フィードをフェッチする機能
public void getContent(){
// Initializing instance variables
headlines = new ArrayList<String>();
links = new ArrayList<String>();
server_images = new ArrayList<String>();
try {
URL url = new URL("http://www.uglobal.org/androidServer/courses_list.xml");
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(false);
XmlPullParser xpp = factory.newPullParser();
// We will get the XML from an input stream
xpp.setInput(getInputStream(url), "UTF_8");
/* We will parse the XML content looking for the "<title>" tag which appears inside the "<item>" tag.
* However, we should take in consideration that the rss feed name also is enclosed in a "<title>" tag.
* As we know, every feed begins with these lines: "<channel><title>Feed_Name</title>...."
* so we should skip the "<title>" tag which is a child of "<channel>" tag,
* and take in consideration only "<title>" tag which is a child of "<item>"
*
* In order to achieve this, we will make use of a boolean variable.
*/
boolean insideItem = false;
// Returns the type of current event: START_TAG, END_TAG, etc..
int eventType = xpp.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
if (eventType == XmlPullParser.START_TAG) {
if (xpp.getName().equalsIgnoreCase("item")) {
insideItem = true;
} else if (xpp.getName().equalsIgnoreCase("title")) {
if (insideItem)
headlines.add(xpp.nextText()); //extract the headline
} else if (xpp.getName().equalsIgnoreCase("link")) {
if (insideItem)
links.add(xpp.nextText()); //extract the link of article
} else if (xpp.getName().equalsIgnoreCase("image")) {
if (insideItem)
server_images.add(xpp.nextText()); //extract the link of article
}
}else if(eventType==XmlPullParser.END_TAG && xpp.getName().equalsIgnoreCase("item")){
insideItem=false;
}
eventType = xpp.next(); //move to next element
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (XmlPullParserException e) {
e.printStackTrace();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public InputStream getInputStream(URL url) {
try {
return url.openConnection().getInputStream();
} catch (IOException e) {
return null;
}
}
非同期タスク内でこの関数を実行するより
非同期タスク
private class PostTask extends AsyncTask<String, Integer, String>{
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
progressDialog = ProgressDialog.show(ListViewImagesActivity.this, "Loading","Getting Feed ", true);
}
protected String doInBackground(String... arg0) {
getContent();
return null;
}
}
これで、インターネットに接続している場合は正常に機能しますが、接続を失うと、「アプリケーションが応答していません」というエラーでアプリケーションが強制終了されます。
ConnectivityManagerに依存したくない理由
Connectivity Managerはインターネット接続を探すだけですが、プロキシの背後で実行していて、インターネットにアクセスするためにプロキシサーバーにログインする必要がある場合はどうなりますか?
少なくとも私のアプリケーションが強制終了されるのを防ぐ方法はありますか?