StringBuilder sb;
FileOutputStream fos;
sb = new StringBuilder("");
// to get project root:
sb.append(new java.io.File(".").getCanonicalPath());
// File.separator for system specific file separator:
sb.append(File.separator);
sb.append("dist");
sb.append(File.separator);
sb.append("file.pdf");
fos = new FileOutputStream(sb.toString());
1条答案
按热度按时间k4emjkb11#
我不知道这是不是最好的方法,但我在另一个项目中这样做了:
正如我所说,我不知道这是否是最好的方式,但对我来说,它起了作用。