Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过浏览 Jena 和 ARQ 的源代码找到了解决方案:
而不是使用final QueryEngineHTTP request = QueryExecutionFactory.createServiceRequest(String,Query)我可以直接使用绕过解析器final QueryEngineHTTP request = new QueryEngineHTTP (this.endpoint, fullQueryString)。
final QueryEngineHTTP request = QueryExecutionFactory.createServiceRequest(String,Query)
final QueryEngineHTTP request = new QueryEngineHTTP (this.endpoint, fullQueryString)