我正在编写一个应用程序,它允许将文件上传到 eXist-db 中的特定集合。我将这个应用程序基于我在 eXist 网站上找到的代码。
不幸的是,代码似乎不起作用 - 当我测试它时出现错误消息
usage: StoreExample collection-path document
当我将 URI xmldb:exist://localhost:8080/exist/xmlrpc更改为http://localhost:8080/exist/admin/admin.xql;jsessionid=1fkd05vvfv6kq并将集合更改为/db/col1时,出现以下错误发生:
Exception in thread "main" org.xmldb.api.base.XMLDBException:
at org.xmldb.api.DatabaseManager.getDatabase(Unknown Source)
at org.xmldb.api.DatabaseManager.getCollection(Unknown Source)
at org.xmldb.api.DatabaseManager.getCollection(Unknown Source)
at addingfiletest.exp.main(exp.java:44)
ligne 44 ==> Collection col =DatabaseManager.getCollection(URI + collection);
这是我的代码:
import java.io.File;
import org.xmldb.api.DatabaseManager;
import org.xmldb.api.base.Collection;
import org.xmldb.api.base.Database;
import org.xmldb.api.base.*;
import org.xmldb.api.modules.CollectionManagementService;
import org.xmldb.api.modules.XMLResource;
public class exp {
public final static String URI = "http://localhost:8080/exist/admin/admin.xql;jsessionid=1fkd05vvfv6kq";
public static void main(String args[]) throws Exception {
String collection = "/db/col1", file = "D:/PFE/lien.txt";
// initialisation du driver
String driver = "org.exist.xmldb.DatabaseImpl";
Class cl = Class.forName(driver);
Database database = (Database) cl.newInstance();
DatabaseManager.registerDatabase(database);
// Accès à la collection
Collection col = DatabaseManager.getCollection(URI + collection);
// créer une nouvelle XMLResource; un id sera affecté à la nouvelle
// ressource
XMLResource document = (XMLResource) col.createResource(null,
"XMLResource");
File f = new File(file);
if (!f.canRead()) {
System.out.println("cannot read file " + file);
return;
}
document.setContent(f);
System.out.print("storing document " + document.getId() + "...");
col.storeResource(document);
System.out.println("ok.");
}
}
感谢所有帮助,谢谢。