gpt4 book ai didi

java - Jena RDF 文件解析问题

转载 作者:太空宇宙 更新时间:2023-11-04 14:13:59 25 4
gpt4 key购买 nike

我正在尝试使用InputStream 解析一个简单的rdf 文件。我将有一个巨大的文件要读取,因此我需要从输入流中读取它。

我的代码:

public static void main(String args[]) throws Exception{

String file = "/Users/rdf_files/testRDF.rdf";

InputStream in = new FileInputStream(file);

if (in == null) {
System.out.println("file not found");
}

Model model = ModelFactory.createDefaultModel();
model.read(in, null);
model.write(System.out);


System.out.println("read the file");
}

我的文件:

<?xml version="1.0"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Empire Burlesque">
<cd:artist>test 1</cd:artist>
<cd:country>USA</cd:country>
<cd:company>Columbia</cd:company>
<cd:price>10.90</cd:price>
<cd:year>1985</cd:year>
</rdf:Description>

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Hide your heart">
<cd:artist>test 2</cd:artist>
<cd:country>UK</cd:country>
<cd:company>CBS Records</cd:company>
<cd:price>9.90</cd:price>
<cd:year>1988</cd:year>
</rdf:Description>

</rdf:RDF>

我遇到了这样的异常:

java.lang.ClassNotFoundException: com.ibm.icu.text.StringPrepParseException

谁能告诉我我做错了什么?

最佳答案

slm,我遇到了同样的问题,我通过将“com.ibm.icu_3.4.4.1.jar”添加到我的 classPath 来修复它,我希望这可以帮助您:)

关于java - Jena RDF 文件解析问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27971008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com