添加资源到eclipse项目/插件

发布于 2024-11-02 13:01:04 字数 139 浏览 4 评论 0原文

我是 eclipse 插件开发的新手。

我已经能够创建一个新的项目类型并向其中添加文件夹。

将一组起始文件添加到该项目中的最佳方法是什么?我应该让我的 JAVA 类创建这些文件吗?或者我可以将它们与插件打包并复制到新的项目实例中吗?

I'm new to eclipse plugin development.

I've been able to create a new project type and add folders to it.

What is the best way to add a starting set of files into this project? Should I have my JAVA class create these files? Or can I package them with the plug-in and copy them into new project instances?

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

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

发布评论

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

评论(2

时光瘦了 2024-11-09 13:01:05

您的插件的目标是创建新项目吗?不太确定你的意思是什么

起始文件集

好吧,也许看看 sourceforge,看看这些人是如何做到的。

Is your plugin's goal to create new projects? Not quite sure what do you mean by

starting set of files

Ok maybe have a look at sourceforge, see how this guys are doing it.

鼻尖触碰 2024-11-09 13:01:05

只是为了澄清两种常见模式。您可以像 Java 一样,将模板文件包含在源文件中,并使用 YourClass.class.getResourceAsStream("filename") 获取文件的输入流。如果您正在开发 Eclipse 插件,则可以使用 Bundle.getEntry("/path/in/plugin"),它返回一个可用于获取 InputStream 的 URL。

密码

Just to clarify the 2 common patterns. You can do it like Java, where you include the template files with your source files, and use YourClass.class.getResourceAsStream("filename") to get the input stream to the files. If you are working on an eclipse plugin, you can use Bundle.getEntry("/path/in/plugin") which returns a URL you can use to get the InputStream.

PW

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