在JAVA中,怎么将数以HTML格式 保存到硬盘

在JAVA中,怎么将数以HTML格式 保存到硬盘,第1张

建立输出流 保存方式作为.html格式的,如上

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()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11859008.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存