0

打扰你了,万分抱歉。我对 apache commons 配置有疑问。我有一个属性文件,它位于我正在构建的应用程序的 src 文件夹中(使用 Eclipse)。当我运行应用程序并尝试从 eclipse 保存到属性文件中时,它可以工作。但是,当我将它导出为 jar 并尝试从 CLI 运行它时将其保存到文件中时,我收到以下错误:

无法保存到 URL rsrc:smpp-config.properties 并且跟踪显示:ava.net.UnknowServiceException:协议不支持输出。

请帮忙。

谢谢

4

1 回答 1

1

You cannot modify a file inside a jar file.

The only solution is to unzip the jar file using ZipFile and then modify the file.

Also refer the following question dealing with the same issue
Modifying a file inside a jar
Change file in jar

于 2013-01-31T10:30:26.760 回答