标签:语句 puts sources 常用 两种 code adl line system
1.在控制台输出语句的两种方式
//在控制台输出语句 System.out.println("like"); //方式1 Log.d("002","linda");//方式2
2.读取文本文件内容
InputStream input=getResources().openRawResource(R.raw.user);//user是我的文件名,这里应该根据具体文件更改 Reader reader=new InputStreamReader(input); BufferedReader br=new BufferedReader(reader); String str; while ((str=br.readLine())!=null){ System.out.println(str); }
标签:语句 puts sources 常用 两种 code adl line system
原文地址:https://www.cnblogs.com/luckyplj/p/10585244.html