博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android_内部文件读取
阅读量:5805 次
发布时间:2019-06-18

本文共 2630 字,大约阅读时间需要 8 分钟。

我们这里做一个安卓的简易的文件读取程序之记住密码

  • 首先我们先明确安卓的存储路径, 所有安装至手机的应用都会在 data/data 目录下生成一个安卓文件夹(包名),这个文件夹就是安卓存储的路径
  • 在运行安卓程序时,按home键 不会销毁 Activity,但是返回键 会销毁 Activity

 

首先我们写前台代码,一个简单的登录页面,两个EditText,一个CheckBox记住密码,以及登录按钮Button

这里我们只是注重于内部存储,而没有去处理登录的业务逻辑

1 
8 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");

 

转载于:https://www.cnblogs.com/AganRun/p/7802284.html

你可能感兴趣的文章
【348天】每日项目总结系列086(2018.01.19)
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
做完小程序项目、老板给我加了6k薪资~
查看>>
TortoiseSVN中图标的含义
查看>>
根据毫秒数计算出当前的“年/月/日/时/分/秒/星期”并不是件容易的事
查看>>
Unity Shaders and Effects Cookbook (3-5) 金属软高光
查看>>
31-hadoop-hbase-mapreduce操作hbase
查看>>
NYOJ283对称排序
查看>>
C#反射实例应用--------获取程序集信息和通过类名创建类实例
查看>>
VC中实现文字竖排的简单方法
查看>>
程序员常用的六大技术博客类
查看>>
深入理解浏览器的缓存机制
查看>>
又拍云沈志华:如何打造一款安全的App
查看>>
dubbo源码分析-架构
查看>>
Windows phone 8 学习笔记
查看>>
我的友情链接
查看>>
sshd_config设置参数笔记
查看>>
LeetCode--112--路径总和
查看>>
感悟贴2016-05-13
查看>>
百度编辑器ueditor 光标位置的坐标
查看>>