- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Windows 上的 AllegroGraph 客户端(版本 4.1.1)将 *.nt 文件导入 AllegroGraph。我使用 AllegroGraph WebView 应用程序来启动服务器。首先,我尝试创建一个连接、一个目录和一个存储库。创建存储库后,我的系统抛出 com.franz.agraph.http.exception.AGHttpException
这是我的源代码:
package mytest;
public class NTLoader {
public static String SERVER_URL = "http://localhost:8080";
public static String CATALOG_ID = "";
public static String REPOSITORY_ID = "test3";
public static String USERNAME = "me";
public static String PASSWORD = "xyzzy";
public static String TEMPORARY_DIRECTORY = "";
public static void main(String[] args) {
try {
// Tests getting the repository up.
System.out.println("\nStarting example.");
AGServer server = new AGServer(SERVER_URL, USERNAME, PASSWORD);
System.out.println(server.getRootCatalog().getCatalogName());
AGCatalog catalog = server.getCatalog(server.getRootCatalog().getCatalogName());
AGRepository myRepository = catalog.createRepository(REPOSITORY_ID);
} catch (Exception e) {
e.printStackTrace(System.out);
}
输出:
Starting example().
/
org.openrdf.repository.RepositoryException: com.franz.agraph.http.exception.AGHttpException: An unexpected error occurred.
at com.franz.agraph.repository.AGCatalog.createRepository(AGCatalog.java:240)
at com.franz.agraph.repository.AGCatalog.createRepository(AGCatalog.java:211)
at mytest.NTLoader.main(NTLoader.java:86)
Caused by: com.franz.agraph.http.exception.AGHttpException: An unexpected error occurred.
at com.franz.agraph.http.handler.AGErrorHandler.newException(AGErrorHandler.java:70)
at com.franz.agraph.http.handler.AGErrorHandler.handleResponse(AGErrorHandler.java:47)
at com.franz.agraph.http.AGHTTPClient.get(AGHTTPClient.java:180)
at com.franz.agraph.http.AGHTTPClient.getTupleQueryResult(AGHTTPClient.java:376)
at com.franz.agraph.repository.AGCatalog.listRepositories(AGCatalog.java:173)
at com.franz.agraph.repository.AGCatalog.hasRepository(AGCatalog.java:193)
at com.franz.agraph.repository.AGCatalog.createRepository(AGCatalog.java:235)
... 2 more
第 86 行是
AGRepository myRepository = catalog.createRepository(REPOSITORY_ID);
我如何运行它:
1)运行agwebview.exe --端口8080
2)等待服务器启动
3) 运行Java类
我已经用谷歌搜索了解决方案,并查看了 createRepository() 命令的 javadoc,但找不到任何解决方案。什么可能导致此行为以及如何修复它?
我的操作系统是 Windows 7 SP 1,java 类使用 JDK 1.6 运行
最佳答案
通过切换到 Linux 并使用最新的 AGWebView 版本修复了该问题。后来我发现,我最初使用AG 4的客户端作为AG 3.3服务器。
对于遇到此问题的其他人:确保使用正确的 JAR 文件
关于java - AllegroGraph 客户端 HTTPException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18981908/
是否可以在 AllegroGraph 中查看用于评估 SPARQL 查询的查询执行计划(类似于 EXPLAIN)。 最佳答案 AllegroGraph 通过 Lisp API 和 REST API 提
我正在尝试使用 Windows 上的 AllegroGraph 客户端(版本 4.1.1)将 *.nt 文件导入 AllegroGraph。我使用 AllegroGraph WebView 应用程序来
我正在使用 AllegroGraph 来存储这样的语句: 我想在这句话上定义一个规则:如果主题 newsid1 hasAnnotation要么 Gamma或 Beta ,然后在三元组中添加一个新语
我在 AllegroGraph 中注册命名空间时遇到问题。 我的Java代码(程序1): AllegroGraphConnection agc = new AllegroGraphConnection
使用 Allegrograph,Prolog 仿函数非常棒,但有一个缺点。 假设您定义了一个链接两个实体的仿函数,例如 parentOf 等于“!n:motherOf OR !n:fatherOf”,
Allegrograph 基本上是一个 RDF 三重(实际上是五个字段)存储。那为什么我们不能创建一个有五列的 MySQL 表并将三元组存储在其中。 ? AG相对于MySql表有什么特点? 最佳答案
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在尝试使用 here 中的以下说明在 Ubuntu 14.04.2 LTS 上安装 Allegrograph 但是,我遇到了问题。我创建了目录 /home/me/Allegrograph_4.14
我注意到在 AllegroGraph Python API 教程 here ,每当他们想要使用 OWL 推理时,他们都会使用 conn.getStatements 方法,而不是发出 Prolog 或
我正在尝试比较知识库中两个三元组的对象。我已经通过 ACL 客户端(Allegro CL 企业版 9.0)连接了知识库并编写了以下代码: (select (?s ?threshold ?NameMat
我是一名优秀的程序员,十分优秀!