一个TXT 文件 对其进行读取,并且每行都单个存储读取
public class MainActivity extends AppCompatActivity { private TextVIEw textVIEw,textVIEw2,textVIEw3; private button click; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); textVIEw = (TextVIEw) findVIEwByID(R.ID.textVIEw); textVIEw2 = (TextVIEw) findVIEwByID(R.ID.textVIEw2); textVIEw3 = (TextVIEw) findVIEwByID(R.ID.textVIEw3); String s1 = Txt().get(0);//从Map get (key = 0)的value String s2 = Txt().get(1); String s3 = Txt().get(2); textVIEw.setText(s1); textVIEw2.setText(s2); textVIEw3.setText(s3); } public Map<Integer,String> Txt() { //将读出来的一行行数据使用Map存储 String filePath = "/sdcard/sdl_log.txt";//手机上地址 Map<Integer,String> map = new HashMap<Integer,String>(); try { file file = new file(filePath); int count = 0;//初始化 key值 if (file.isfile() && file.exists()) { //文件存在的前提 inputStreamReader isr = new inputStreamReader(new fileinputStream(file)); BufferedReader br = new BufferedReader(isr); String lineTxt = null; while ((lineTxt = br.readline()) != null) { // if (!"".equals(lineTxt)) { String reds = lineTxt.split("\+")[0]; //java 正则表达式 map.put(count,reds);//依次放到map 0,value0;1,value2 count++; } } isr.close(); br.close(); }else { Toast.makeText(getApplicationContext(),"can not find file",Toast.LENGTH_SHORT).show();//找不到文件情况下 } } catch (Exception e) { e.printstacktrace(); } return map; }}
以上这篇AndroID 读取txt,按行读取的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。
您可能感兴趣的文章:android按行读取文件内容的几个方法Android 读取文件内容实现方法总结 总结以上是内存溢出为你收集整理的Android 读取txt,按行读取的实例讲解全部内容,希望文章能够帮你解决Android 读取txt,按行读取的实例讲解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)