标签:html cep div 内容 nts 真机 字节流 exist com
//读取的内容会随着文件的改变而改变 try { //读取的是字节流 InputStream is=getResources().getAssets().open("info.txt"); //UTF-8编码的指定是很重要的 InputStreamReader isr=new InputStreamReader(is,"UTF-8"); BufferedReader bfr=new BufferedReader(isr); String in=""; while((in=bfr.readLine())!=null) { Log.i(TAG, in); } // Log.i(TAG, bfr.readLine()); } catch (IOException e) { e.printStackTrace(); }
InputStream is=getResources().openRawResource(R.raw.info); InputStreamReader isr=new InputStreamReader(is,"UTF-8"); BufferedReader bfr=new BufferedReader(isr); String instring=""; while((instring=bfr.readLine())!=null) { Log.i(TAG, instring); }
标签:html cep div 内容 nts 真机 字节流 exist com
原文地址:http://www.cnblogs.com/Oldz/p/6901487.html