1

私のコードは 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
4

3 に答える 3

2

バディ、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;
    }
}

この例が役立つことを願っています。:)

于 2013-08-16T18:16:43.110 に答える
0

Genymotionを使用できます。非常に高速で、adb 経由でログにアクセスできます。

于 2013-08-16T18:17:16.567 に答える