zoukankan      html  css  js  c++  java
  • 数据存储--file

    //保存用户名密码
    public static boolean saveUserInfo_android(Context context,String username, String password) {

    try{
    String userinfo = username + "##"+ password;//封装用户名密码
    //得到私有目录下一个文件写入流; name : 私有目录文件的名称 mode: 文件的操作模式, 私有,追加,全局读,全局写
    FileOutputStream fileOutputStream = context.openFileOutput("userinfo.txt", Context.MODE_PRIVATE);
    fileOutputStream.write(userinfo.getBytes());//将用户名密码写入文件
    fileOutputStream.close();
    return true;
    }catch (Exception e) {
    e.printStackTrace();
    }

    return false;
    }


    //获取用户名密码
    public static Map<String ,String> getUserInfo_android(Context context){

    try{

    //通过context对象获取一个私有目录的文件读取流
    FileInputStream fileInputStream = context.openFileInput("userinfo.txt");
    BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(fileInputStream));
    //读取一行中包含用户密码,需要解析
    String readLine = bufferedReader.readLine();
    String[] split = readLine.split("##");
    HashMap<String, String> hashMap = new HashMap<String ,String>();
    hashMap.put("username", split[0]);
    hashMap.put("password", split[1]);
    bufferedReader.close();
    fileInputStream.close();
    return hashMap;

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

    }

  • 相关阅读:
    在同步块中修改指向同步对象的引用
    算法学习记录3 插入排序
    算法学习记录2 归并排序
    算法学习记录1 快速排序
    CE学习记录1
    jenkins 学习记录2
    jenkins 学习记录1
    扩展 jquery miniui 组件实现自动查询数据
    java对象与XML相互转化
    分享公司缓存的用法
  • 原文地址:https://www.cnblogs.com/wwttsqt/p/6441362.html
Copyright © 2011-2022 走看看