添加资源到eclipse项目/插件
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的插件的目标是创建新项目吗?不太确定你的意思是什么
好吧,也许看看 sourceforge,看看这些人是如何做到的。
Is your plugin's goal to create new projects? Not quite sure what do you mean by
Ok maybe have a look at sourceforge, see how this guys are doing it.
只是为了澄清两种常见模式。您可以像 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