导出的 Eclipse RCP 应用程序读取本地属性文件

发布于 2024-10-19 13:51:34 字数 437 浏览 1 评论 0原文

我开发了一个从 .properties 文件读取数据库连接的插件,但导出插件后,.properties 文件被包装在 jar 插件内,无法即时更改。

做了一些研究,一些人建议创建片段或功能来补充动态读取属性文件,并指向

http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.pde.doc.user/reference /pde_feature_generate_build.htm

尝试使用 Eclipse 来创建片段,但在如何创建功能 t 方面迷失了方向

I developing a plugin which reads from a .properties file for the database connection, but after exporting the plugin, the .properties file is wrapped up inside the jar'ed plugin and not able to be changed on the fly.

did some research, some suggested creating fragments or features to compliment the reading of the properties file on the fly and points to

http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.pde.doc.user/reference/pde_feature_generating_build.htm

tried using eclipse to creature fragments but am lost as in how to create a feature t

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝咒 2024-10-26 13:51:34

您可以将属性文件安装在目标 Eclipse 安装的根目录(或 RCP 应用程序的根目录)中。然后,您可以使用 Platform.getInstallLocation() 访问它。

关于创建功能,Eclipse RCP 教程“创建富客户端应用程序”包含标题为“定义基于功能的产品”的部分。

You could install the properties file in the root of the target Eclipse installation (or the root of your RCP application). You can then access it using Platform.getInstallLocation().

With regards to creating a feature, the Eclipse RCP tutorial "Creating a Rich Client Application" contains a section entitled "Define a feature-based product".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文