Fuseki charset问题

时间:2014-08-25 17:27:33

标签: character-encoding sparql fuseki

有一个奇怪的问题:插入编码为UTF-8的数据:

INSERT DATA { <http://onto.pro/Test> <http://www.w3.org/2000/01/rdf-schema#label> "Проверка" }

然后提取它们:

SELECT * WHERE { <http://onto.pro/Test> <http://www.w3.org/2000/01/rdf-schema#label> ?a }

并且编码被破坏了:

{ "head": { "vars": [ "a" ] } , "results": {  "bindings": [ {  "a": { "type": "literal" , "value": "????????" }  } ] } }

可以看出,而不是“Проверка”返回“????????”。问题突然发生并在重启Fuseki后消失。在哪里挖?

0 个答案:

没有答案