从另一个portlet访问一个portlet

时间:2013-08-07 15:27:42

标签: java file properties path portlet

我正在尝试编写portlet,其中我想在其他portlet中创建/编辑一些.properties文件(我想操纵负责从其他portlet转换的属性文件)。我想以下列方式做到这一点:

Properties prop = new Properties();
prop.setProperty("...", "...");
String pathToOhterPortletPropertiesFile = ...
prop.store(pathToOhterPortletPropertiesFile);

运行后出现以下错误:

SEVERE: Servlet.service() for servlet Seap Servlet threw exception
java.io.FileNotFoundException: (...my path...)\tomcat-    7.0.27\webapps (Access is denied)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(Unknown Source)
at java.io.FileOutputStream.<init>(Unknown Source)
at main.Translator.processAction(Translator.java:49)

有人知道解决我的问题吗?

此致

1 个答案:

答案 0 :(得分:0)

我建议使用portlet事件来解决这个问题。让您的第一个portlet将事件发送到拥有该属性文件的portlet。在事件上,传递其他portlet进行更新所需的信息。然后让其他portlet更新自己的属性。