IntelliJ IDE 上的 rdf4j?
极限初学者正在尝试研究 RDF。 rdf4j 可以在 IntelliJ IDEA 上工作还是只能在 Eclipse 上工作?如果它可以在 IntelliJ 上运行,有人可以告诉我怎么做吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
极限初学者正在尝试研究 RDF。 rdf4j 可以在 IntelliJ IDEA 上工作还是只能在 Eclipse 上工作?如果它可以在 IntelliJ 上运行,有人可以告诉我怎么做吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
RDF4J 是一个可以在任何 Java IDE 中使用的库,例如 IntelliJ IDEA、Visual Studio代码、Eclipse IDE 或 NetBeans。
如果您使用 IntelliJ IDEA,您可以使用菜单
Git -> 从 GitHub 导入项目。克隆 ...
并使用https://github.com/eclipse/rdf4j
作为 URL。然后,您可以通过在“项目”窗口中导航到 rdf4j -> 来打开示例。例子->源代码->主要-> java-> org.eclipse.rdf4j.examples -> model,然后右键单击源代码左侧的绿色箭头来运行它。
RDF4J is a library that can be used within any Java IDE such as IntelliJ IDEA, Visual Studio Code, Eclipse IDE or NetBeans.
If you use IntelliJ IDEA, you can import the project from GitHub using the menu
Git -> Clone ...
and usinghttps://github.com/eclipse/rdf4j
as the URL.You can then open an example, by navigating in the Project window to
rdf4j -> examples -> src -> main -> java -> org.eclipse.rdf4j.examples -> model
and then right click on the green arrow, on the left of the source code, to run it.