我的代码获取RSS源并解析它。代码工作正常,但在某些函数中速度很慢(请参阅代码中的时间)。有什么建议吗?
URLConnection connection = feedUrl_.openConnection();
InputStream inputStream = connection.getInputStream(); // 15 sec
Reader reader = new InputStreamReader(inputStream, "UTF-8");
InputSource inputSource = new InputSource(reader);
doc = builder.parse(inputSource); // 60 sec
答案 0 :(得分:2)
Buddy,尝试使用XMLPullParser来解析数据,解析数据不会花费太多时间,只需要6-7秒。这是代码。试试这个:
onCreate()
{
try
{
URL url = null;
url = new URL("http://feeds.abcnews.com/abcnews/worldnewsheadlines");
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(false);
XmlPullParser xpp = factory.newPullParser();
xpp.setInput(getInputStream(url), "UTF_8");
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 (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 (IOException e) {
e.printStackTrace();
}
}
public InputStream getInputStream(URL url) {
try {
return url.openConnection().getInputStream();
} catch (IOException e) {
return null;
}
}
我希望这个例子会帮助你。 :)
答案 1 :(得分:1)
问题可能是模拟器本身,因为它存在性能问题。我建议您在实际设备上测试它以确定问题是来自模拟器还是来自代码。
如果您目前无法在设备上进行测试,那么对此SO问题的回答会提出许多改进模拟器的提示:Why is the Android emulator so slow? How can we speed up the Android emulator?
答案 2 :(得分:0)
您可以使用Genymotion,速度非常快,您可以通过adb访问日志。