Android:无法打开文件没有足够的磁盘空间

时间:2013-03-27 10:11:16

标签: android file xml-parsing memorycache

我的应用程序包括读取和保存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;

            }

我有足够的diskSpace,有时我得到“MemoryCach将使用高达16 Mb”,总是我得到“没有足够的磁盘空间,不会索引”和“FeatureCode>无法打开文件”

我的应用程序有什么问题?

0 个答案:

没有答案