Я делаю школьный проект, который берет 7584 строк .csv и сохраняет его в файле. xml с помощью eXist-db. Вот мой код для вставки:
private static Collection collection = ExistConnection.getCollection();
private static XPathQueryService service;
static {
try {
service = (XPathQueryService) collection.getService("XPathQueryService", "1.0");
} catch (XMLDBException e) {
e.printStackTrace();
}
}
public static void insert() {
App.getCrimes().forEach(crime -> {
try {
String insert = "update insert" +
"<crime>" +
"<date>" + crime.getDate() + "</date>" +
"<address>" + crime.getAddress() + "</address>" +
"<district>" + crime.getDistrict() + "</district>" +
"<beat>" + crime.getBeat() + "</beat>" +
"<grid>" + crime.getGrid() + "</grid>" +
"<description>" + crime.getDescription() + "</description>" +
"<ncicCode>" + crime.getNcicCode() + "</ncicCode>" +
"<location>" +
"<latitude>" + crime.getLocation().getLatitude() + "</latitude>" +
"<longitude>" + crime.getLocation().getLongitude() + "</longitude>" +
"</location>" +
"</crime>" +
"into /crimes";
service.query(insert);
} catch (XMLDBException e) {
System.out.println(e.getMessage());
}
});
}
А теперь код для подсчета количества преступлений:
public static void countAll() {
try {
ResourceSet resourceSet = service.query("let $n := count(/crimes/crime) return $n");
ResourceIterator i = resourceSet.getIterator();
while (i.hasMoreResources()) {
Resource r = i.nextResource();
System.out.println((String) r.getContent());
}
ExistConnection.closeCollection();
} catch (XMLDBException e) {
e.printStackTrace();
}
}
При запуске приложения я получил следующую ошибку и результат подсчета количества преступлений:
Failed to invoke method queryPT in class org.exist.xmlrpc.RpcConnection: org.exist.xquery.XPathException: err:XPST0003 unexpected token: $ (while expecting closing tag for element constructor: null) [at line 1, column 171]
Failed to invoke method queryPT in class org.exist.xmlrpc.RpcConnection: org.exist.xquery.XPathException: err:XPST0003 unexpected token: $ (while expecting closing tag for element constructor: null) [at line 1, column 177]
7582
Я не знаю причину, почему я могу вставить только 7582 из 7584 строк. Я попытался удалить строки 7583 и 7584, на случай, если по каким-то причинам эти строки были неправильными, но ошибка сохраняется, и результат подсчета составляет 7580.