码迷,mamicode.com
首页 > 移动开发 > 详细

Android存储Json到本地,和读取本地Json

时间:2014-09-03 11:04:56      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   os   io   ar   div   cti   

/**
     * 保存json到本地
     * @param mActivity
     * @param filename
     * @param content
     */
    public static File dir = new File(Environment.getExternalStorageDirectory() + "/.Imageloader/json/");

    public static void saveToSDCard(Activity mActivity, String filename, String content) {
        String en = Environment.getExternalStorageState();
        //获取SDCard状态,如果SDCard插入了手机且为非写保护状态  
        if (en.equals(Environment.MEDIA_MOUNTED)) {
            try {
                dir.mkdirs(); //create folders where write files
                File file = new File(dir, filename);

                OutputStream out = new FileOutputStream(file);
                out.write(content.getBytes());
                out.close();
                AppUtils.showToast(mActivity, "保存成功");
            } catch (Exception e) {
                e.printStackTrace();
                AppUtils.showToast(mActivity, "保存失败");
            }
        } else {
            //提示用户SDCard不存在或者为写保护状态  
            AppUtils.showToast(mActivity, "SDCard不存在或者为写保护状态");
        }
    }

    /**
     * 从本地读取json
     * @param mActivity
     * @param filename
     * @param content
     */
    public static String readTextFile(String filePath) {
        StringBuilder sb = new StringBuilder();
        try {
            File file = new File(dir + "/" + filePath);
            InputStream in = null;
            in = new FileInputStream(file);
            int tempbyte;
            while ((tempbyte = in.read()) != -1) {
                sb.append((char) tempbyte);
            }
            in.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return sb.toString();
    }

 

Android存储Json到本地,和读取本地Json

标签:android   style   blog   color   os   io   ar   div   cti   

原文地址:http://www.cnblogs.com/niray/p/3953059.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!