标签:length put new str blog row imp string div
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; public class FileInputStream { public static void main(String[] args) throws IOException{ // TODO Auto-generated method stub //文件名 String str ="快乐十分钟"; //创建对象 FileOutputStream f = new FileOutputStream("hhhh"); //写文件 byte[] f1 = str.getBytes(); int len = f1.length; for(int i=0;i<f1.length;i++){ f.write(f1); } //关闭 f.close(); //读文件 //创建对象 }
标签:length put new str blog row imp string div
原文地址:http://www.cnblogs.com/adada/p/7198633.html