Android文件缓存的简单应用Acache

原ASimpleCache GitHub地址:https://github.com/yangfuhai/ASimpleCache

1、使用时需要注意:readLine会清除换行符,且在大量换行时影响效率

	 /**
     * 读取 String数据
     *
     * @param key
     * @return String 数据
     */
    public String getAsString(String key) {
        //中文可能会乱码
        File file = mCache.get(key);
        if (!file.exists())
            return null;
        boolean removeFile = false;
        BufferedInputStream bis = null;
        try {
            FileInputStream fis = null;
            fis = new FileInputStream(file);
            bis = new BufferedInputStream(fis);
            String content = "";
            //自己定义一个缓冲区
            byte[] buffer = new byte[1024 * 8];
            int flag = 0;
            while ((flag = bis.read(buffer)) != -1) {
                content += new String(buffer, 0, flag);
            }
            if (!Utils.isDue(content)) {
                return Utils.clearDateInfo(content);
            } else {
                removeFile = true;
                return null;
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (removeFile) {
                remove(key);
            }

            try {

                if (bis != null) {
                    bis.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return null;

//        大量换行数据会很耗时,且换行符会丢失
//        File file = mCache.get(key);
//        if (!file.exists())
//            return null;
//        boolean removeFile = false;
//        BufferedReader in = null;
//        try {
//            in = new BufferedReader(new FileReader(file));
//            String readString = "";
//            String currentLine;
//            while ((currentLine = in.readLine()) != null) {
//                readString += currentLine;
//            }
//            if (!Utils.isDue(readString)) {
//                return Utils.clearDateInfo(readString);
//            } else {
//                removeFile = true;
//                return null;
//            }
//        } catch (IOException e) {
//            e.printStackTrace();
//            return null;
//        } finally {
//            if (in != null) {
//                try {
//                    in.close();
//                } catch (IOException e) {
//                    e.printStackTrace();
//                }
//            }
//            if (removeFile)
//                remove(key);
//        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值