?android里去写文件就可以了啊,创建一个文件,然后流式写入,windows下就可以打开看的
android的文件读写直接用java的方法 FileOutputStream stream = context.openFileOutput("log",   
Context.MODE_WORLD_WRITEABLE);  
stream.write(msg.getBytes("UTF-8"));   
stream.flush();   
stream.close();