我想将一些值写入属性文件,该文件位于WEB-INF文件夹中。 以下是我的代码 -
Properties result = new Properties();
result.setProperty(user, value);
result.store(new FileOutputStream(getServletContext().getRealPath("/WEB-INF/properties.props").trim()), null);
每当我运行我的代码时,属性文件中都没有数据。 它显示一个空文件。
请告诉我如何在java web应用程序中编写属性文件。