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;

    }

  • 相关阅读:
    activeMq-1 快速入门
    netty2 案例:数据通信
    SQL学习分享之数据链接(二)
    SQL学习 (一)
    CSS的定位重叠
    CSS 伪类 学习
    Jmeter 初学(三)
    玩转codeacademy (三)
    玩转codecademy (二)
    玩转codecademy(首次体会对象的乐趣) (一)
  • 原文地址:https://www.cnblogs.com/wwttsqt/p/6441362.html
Copyright © 2011-2022 走看看