使用java动态创建html页面,为什么无法读取这个文件?
package com.abbott.common.utils;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
public class HtmlUtil {
public static void exportHtml() {
//用于存储html字符串
StringBuilder stringHtml = new StringBuilder();
try {
//打开文件
PrintStream printStream = new PrintStream(new FileOutputStream("./Data/test.html"));
//输入HTML文件内容
stringHtml.append("<html><head>");
stringHtml.append("<meta http-equiv="Content-Type" content="text/html; charset=GBK">");
stringHtml.append("<title>测试报告文档</title>");
stringHtml.append("</head>");
stringHtml.append("<body>");
stringHtml.append("<div>hello</div>");
stringHtml.append("</body></html>");
try{
//将HTML文件内容写入文件中
printStream.println(stringHtml.toString());
}catch (Exception e) {
e.printStackTrace();
}
} catch(FileNotFoundException e){
e.printStackTrace();
}
}
public static void main(String[] args) {
HtmlUtil.exportHtml();
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
os别用./这种路径,直接从System获取项目根路径,再去拼接路径!最好判断下文件是不是存在,不存在就创建文件
8.根据上面获取到的路径,将下面这段代码中的文件路径替换成:“/.../Data/test.html”