我使用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";
然后它正在运作。