我们这里做一个安卓的简易的文件读取程序之记住密码
- 首先我们先明确安卓的存储路径, 所有安装至手机的应用都会在 data/data 目录下生成一个安卓文件夹(包名),这个文件夹就是安卓存储的路径
- 在运行安卓程序时,按home键 不会销毁 Activity,但是返回键 会销毁 Activity
首先我们写前台代码,一个简单的登录页面,两个EditText,一个CheckBox记住密码,以及登录按钮Button
这里我们只是注重于内部存储,而没有去处理登录的业务逻辑
18 9 14 15 21 22 25 26 32 33 39 40 41 42
然后是后台的处理,获取前台输入的信息以及是否勾选记住密码
1 public class MainActivity extends AppCompatActivity { 2 3 @Override 4 protected void onCreate(Bundle savedInstanceState) { 5 super.onCreate(savedInstanceState); 6 setContentView(R.layout.activity_main); 7 8 readAccount(); 9 }10 11 public void readAccount(){12 //读取文件,回显数据13 File file = new File("data/data/com.example.rwinRom/info.txt");14 15 if (file.exists()){16 try{17 FileInputStream fis = new FileInputStream(file);18 //把字节流转换为字符流19 BufferedReader br = new BufferedReader(new InputStreamReader(fis));20 21 //读取文件的文本22 String text = br.readLine();23 String s[] = text.split("&&");24 25 EditText et_name = (EditText)findViewById(R.id.et_name);26 EditText et_pass = (EditText)findViewById(R.id.et_pass);27 28 //给输入框设置文本29 et_name.setText(s[0]);30 et_pass.setText(s[1]);31 32 }catch(Exception e){33 e.printStackTrace();34 }35 }36 37 }38 39 public void login(View v){40 EditText et_name = (EditText)findViewById(R.id.et_name);41 EditText et_pass = (EditText)findViewById(R.id.et_pass);42 //获取用户输入的账号密码43 String name = et_name.getText().toString();44 String pass = et_pass.getText().toString();45 46 CheckBox cb = (CheckBox)findViewById(R.id.checkbox1);47 //判断选框是否选中48 File file = new File("data/data/com.example.rwinRom/info.txt");49 if(cb.isChecked()){50 try{51 FileOutputStream fos = new FileOutputStream(file);52 fos.write((name + "&&" + pass).getBytes());53 fos.close();54 }catch(Exception e){55 e.printStackTrace();56 }57 };58 59 Log.i("gogogo", "登录成功");60 }61 }
还有就是,这么去new一个File对象非常不方便而且容易写错,我们可以调用文件的api接口
- getFilesDir 返回路径 data/data/包名/files
- getCacheDir 返回路径 data/data/包名/cache
- 区别不仅仅在路径,如果内部存储空间满了,cache中的文件会 被删除
使用方法就是
File file = new File(getFilesDir(), "info.txt");