2

私は、xmlファイルの読み取りと保存、およびインターネット接続が利用可能な場合はそれを書き込むことで構成されるアプリケーションを持っています。それ以外の場合は、端末に既に保存されているファイルを読み取ります。

WriteFeed 関数:

// Method to write the feed to the File
            private void WriteFeed(RSSFeed data) {

                FileOutputStream fOut = null;
                ObjectOutputStream osw = null;

                try {
                    fOut = openFileOutput(fileName, MODE_PRIVATE);
                    osw = new ObjectOutputStream(fOut);
                    osw.writeObject(data);
                    osw.flush();
                }

                catch (Exception e) {
                    e.printStackTrace();
                }

                finally {
                    try {
                        fOut.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }

WriteFeed 関数:

// Method to read the feed from the File
            private  RSSFeed ReadFeed(String fName) {

                FileInputStream fIn = null;
                ObjectInputStream isr = null;

                RSSFeed _feed = null;
                File feedFile = getBaseContext().getFileStreamPath(fileName);
                if (!feedFile.exists())
                    return null;

                try {
                    fIn = openFileInput(fName);
                    isr = new ObjectInputStream(fIn);

                    _feed = (RSSFeed) isr.readObject();
                }

                catch (Exception e) {
                    e.printStackTrace();
                }

                finally {
                    try {
                        fIn.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }

                return _feed;

            }

十分なディスク容量がありますが、「MemoryCach は最大 16 Mb を使用します」というメッセージが表示されることがあります。

私のアプリで何が問題になっていますか?

4

0 に答える 0