为什么无法打开这个文件?java.io.FileNotFoundException

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

}

}

文件路径不正确,不是无法打开文件,而是程序找不到这个文件...
如果要生成这个文件需要new File(“xxx”)

ps:字符串里面要转译啊

系统找不到指定的路径为什么无法打开这个文件?java.io.FileNotFoundException

如下,这样就可以了。
文件的路径输入的有问题。
为什么无法打开这个文件?java.io.FileNotFoundException

回答

以上是 为什么无法打开这个文件?java.io.FileNotFoundException 的全部内容, 来源链接: utcz.com/a/111946.html

回到顶部