android 向内部存储写文件

String  path = Environment.getExternalStorageDirectory().getPath();
String name = path+"//"+"20131109.txt";
File file = new File(name);
String content="just a test";
 
try {
FileOutputStream outStream =new FileOutputStream(file);  
outStream.write(content.getBytes());
outStream.close();  
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}  

版权声明:本文为kangming07原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。