如何在 jsp 中使用属性文件
2022-09-02 09:12:10
我正在尝试在JSP中使用我的属性文件,但它无法正常工作并引发错误
Error: myproperties.properties (The system cannot find the file specified)
在这里,我正在尝试访问我的属性文件:
<%
try
{
FileInputStream fis = new FileInputStream("myproperties.properties");
Properties p = new Properties();
p.load(fis);
String LogFileName = p.getProperty("NameOfLogFile");
out.println(LogFileName);
}
catch (Exception e)
{// Catch exception if any
out.println(e.getMessage());
}
我尝试了多种方法来访问属性文件。如何解决此问题?