当前位置:网站首页>Ontology Development Diary 03 - When debugging is in progress
Ontology Development Diary 03 - When debugging is in progress
2022-08-09 09:29:00 【"Cancelled"】
I am a chicken!Make do with it!How can it be!Next stage tomorrow!
Troubleshooting:
https://blog.csdn.net/akihiiiii/article/details/108740154
Code:https://blog.csdn.net/javafreely/article/details/8432522
Reference book:https://max.book118.com/html/2017/0717/122715588.shtm
1.Eclipse (download and installation process skipped)
The picture shows my installation version!
Java and Jena are already installed!
2. Open Eclipse and create a Java project, as shown in the figure: Here I take screenshots of all the files that have been built!
Build Java programs refer to this!
for troubleshootinghttps://blog.csdn.net/u013819513/article/details/79903106Build it according to this!There will be many mistakes!Refer to thishttps://blog.csdn.net/akihiiiii/article/details/108740154
Here is a summary of my troubleshooting log!
(1) According to the steps, after the new Java project is completed, delete the first java file in the original file. Of course, there is a problem with the Eclipse version. After my software is newly created, it will automatically generate a module javaDocumentation!I removed it!Below are the files in my final package!
(2) You may need to put log4j under the jena path.properties is copied to the bin directory of the project jenaTest.

(3) Import the package in D:\apache-jena-4.2.0\apache-jena-4.2.0\lib, the package in lib-src Do not import!Secondly, import it into the Classpath, not the Modulepath above!
(4) At this time, use CMD's SPARQLwhen!Can't use it anymore!
I don't really want to figure this out!Anyway, no need!
3. Enter the code to verify!
Code reference: (I copied and pasted all of them! However, pay attention to some problems when importing packages!)
https://blog.csdn.net/javafreely/article/details/8432522
For example, for the first class Introduction in the above reference document, first create a new CLASS in the built package and name it Introduction.Then paste the code in the text!will report an error!Because the following files in the original text also exist in your files, but the path is wrong!
import com.span>hp.hpl.jena.rdf. model.Model;import com.hp.hpl.jena.rdf.model.ModelFactory;import com.hp.hpl.jena.rdf.model.Resource;import com.hp.hpl.jena.vocabulary.span>VCARD;(1) Delete the redundant improt, then, place the mouse on the position marked by the red line in the code, then the corresponding import prompt will appear, select the one that contains jena, don't choose anything else!
All of my imports here, all selected are the prefix of org.apache.jena!(Should it be?? A jena should be right anyway!)
(2) Then, put the code in https://blog.csdn.net/javafreely/article/details/8432522 step by step, first create a new CLASS with the same name and then paste the code into it!Then import the corresponding correct package!Then run as can!
边栏推荐
猜你喜欢
随机推荐
JS报错-Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on...
学习栈的心得和总结(数组实现)
3.练习Thread
5.转换流
Do you know the basic process and use case design method of interface testing?
【面试体系知识点总结】---JVM
本体开发日记03-理解代码
教你如何免费获取0.1米高精度卫星地图
MySQL lock
unix环境编程学习-多线程
JS-常用方法整理
常用功能测试的检查点与用例设计思路
MySQL Leak Detection and Filling (3) Calculated Fields
自动化测试简历编写应该注意哪方面?有哪些技巧?
软件测试流程包括哪些内容?测试方法有哪些?
选择黑盒测试用例设计方法的综合策略方案总结
MySQL事件_单次事件_定时循环事件
第三方免费开放API 获取用户IP 并查询其地理位置
1.线程简介
用户设备IP三者绑定自动上号






