OutputStream os=new FileOutputStream(new File("D:/test.html"))
os.write("<html></html>")
os.close()
这样就会在D盘生成一个test.html文件,内容是<html></html>。
不知道你明白了么?
使用Java中的File类,url为文件的绝对地址,str为输入的字符串内容。代码如下图所示:String str="i love china!" File txt=new File("url") if(!txt.exists()){ txt.createNewFile() } byte bytes[]=new byte[512] bytes=str.getBytes() //新加的 int b=str.length() //改 FileOutputStream fos=new FileOutputStream(txt) fos.write(bytes,0,b) fos.close()欢迎分享,转载请注明来源:内存溢出
评论列表(0条)