Android开发中,服务器返回数据太多?logcat打印不全?一招帮你搞定!
说白了,logcat对于打印信息的长度还是有限制的,只在4k左右。一个解决logcat打印不全的最简单的方法就是在本地生成一个txt文件,存放网络返回的数据。
方法如下:
// String path = Environment.getExternalStorageDirectory().getPath(); //读取sd卡路径
// File file=new File(path+"/"+"test.txt");
// if(!file.exists()) {
// try {
// file.createNewFile();
// FileOutputStream out=new FileOutputStream(file,false);
// out.write(result.getBytes("UTF-8")); //此处的resultshi fuwuqi 返回的String类型数据,可以任意命名。
//
// handler.sendEmptyMessage(1);
//
// out.close();
// } catch (IOException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// handler.sendEmptyMessage(2);
// }
//
// }
网友评论