为什么ical4j需要这么长时间才能构建?

时间:2012-07-14 10:11:46

标签: java android icalendar ical4j

我正在尝试使用android中的ical4j解析谷歌日历ical(.ics)文件。但是从输入流构建日历需要40多秒。

calendar = builder.build(fis);

ical文件的大小只有150KB。 此外,当我使用相同的代码并在PC中运行时,日历的构建发生在不到一秒钟。 我还注意到LogCat中有大量的垃圾收集。 任何人都可以帮助我吗?

@Override
public void onCreate(Bundle savedInstanceState) {


    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    TextView = (TextView)findViewById(R.id.Hello_World);

    new Download().execute();




  }


 final class Download extends AsyncTask<Void, Void, Void> {

        @Override
        protected void onPreExecute(){

            TextView.setText("Downloading");

        }

        @Override
        protected Void doInBackground(Void... arg0) {


             try {
                    URL url = new URL(URL);
                    HttpURLConnection c = (HttpURLConnection) url.openConnection();
                    c.setRequestMethod("GET");
                    c.connect();






                    FileOutputStream fos = openFileOutput(fileName, MainActivity.MODE_PRIVATE);

                    InputStream is = c.getInputStream();


                    byte[] buffer = new byte[1024];
                    int length = 0;
                    while ((length = is.read(buffer)) != -1) {
                        fos.write(buffer, 0, length);
                    }
                    fos.close();
                    is.close();
                } catch (IOException e) {
                    Log.d("log_tag", "Error: " + e);
                }


            return null;
        }


        @Override
        protected void onPostExecute(Void Result) {


            TextView.setText("Saved...Loading Data");
             new Loadicaldata().execute();

        }


    }



final class Loadicaldata extends AsyncTask<Void, Void, Void> {

    String Summary = null;

    @Override
    protected Void doInBackground(Void... arg0) {


        FileInputStream fis = null;
        try {
            fis =  openFileInput(fileName);
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }



        CompatibilityHints.setHintEnabled(CompatibilityHints.KEY_RELAXED_UNFOLDING, true);
        CompatibilityHints.setHintEnabled(CompatibilityHints.KEY_RELAXED_VALIDATION, true);
        CalendarBuilder builder = new CalendarBuilder();



        Calendar calendar = null;   


        try {
            calendar = builder.build(fis);



        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ParserException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


        b.append(calendar.getProperty("X-WR-CALNAME").getValue());

        ComponentList events = calendar.getComponents(Component.VEVENT);

        VEvent Event = (VEvent) events.get(0);

        Summary = Event.getDescription().getValue();

        /*
        for (Object event : calendar.getComponents(Component.VEVENT)) {
            if (((VEvent) event).getSummary() != null) {
                b.append("\n\n");
                b.append(((VEvent) event).getSummary().getValue());
                b.append(": ");
                b.append(((VEvent) event).getStartDate().getDate());

            }
        }
       */

        return null;
    }

    @Override
    protected void onPostExecute(Void Result) {


        TextView.setText(Summary);

    }

}

logcat的: http://dl.dropbox.com/u/35866688/LogCat.txt

另外,我可以安全地排除IO错误的可能性,因为Calendar.load方法也需要很长时间。

如果有人有兴趣,这是锉文件。 https://www.google.com/calendar/ical/m0es4hhj4g9d69ibak88tvoup0%40group.calendar.google.com/public/basic.ics

1 个答案:

答案 0 :(得分:0)

一种可能性是您正在使用doInBackground方法中的无缓冲输入流进行读取。如果CalendarBuilder.build(...)方法一次读取一个字节,则会产生大量系统调用,并显着减慢速度。

第二种可能性是问题是由垃圾收集引起的。你可以做很多事情,但增加堆大小可能可能帮助。 (过量GC开销的一个原因是堆接近满了。如果GC在每个GC循环中无法回收大量内存,那么GC的效率会严重下降...)