如何将创建的pdf文件保存到jsp项目中创建的特定文件夹中

时间:2012-11-03 11:03:35

标签: jsp

我使用itext创建了一个PDF,并希望保存在directory- / web / HR / employee_report下创建的文件夹中。我的问题是找到路径。

我顺路通过:

ServletContext servletContext = getServletContext();

String contextPath = servletContext.getRealPath("File.separator");

并将路径存储在字符串中:

 String FILE = contextPath+"\\HR\\employee_report\\file1.pdf";

但结果为零; 但是,当我手动将路径更改为

String FILE = "F:\\\SFC\\\web\\\HR\\\employee_report\\\file1.pdf";

然后它正在运作。

0 个答案:

没有答案