本文整理匯總了Java中com.hp.hpl.jena.rdf.model.Resource.getURI方法的典型用法代碼示例。如果您正苦於以下問題:Java Resource.getURI方法的具體用法?Java Resource.getURI怎麽用?Java Resource.getURI使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.hp.hpl.jena.rdf.model.Resource
的用法示例。
在下文中一共展示了Resource.getURI方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: doGet
import com.hp.hpl.jena.rdf.model.Resource; //導入方法依賴的package包/類
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
D2RServer server = D2RServer.fromServletContext(getServletContext());
server.checkMappingFileChanged();
if (request.getPathInfo() == null) {
response.sendError(404);
return;
}
String classMapName = request.getPathInfo().substring(1);
Model resourceList = getClassMapLister().classMapInventory(
classMapName, server.getConfig().getLimitPerClassMap());
if (resourceList == null) {
response.sendError(404, "Sorry, class map '" + classMapName + "' not found.");
return;
}
Map<String,String> resources = new TreeMap<String,String>();
ResIterator subjects = resourceList.listSubjects();
while (subjects.hasNext()) {
Resource resource = subjects.nextResource();
if (!resource.isURIResource()) {
continue;
}
String uri = resource.getURI();
Statement labelStmt = PageServlet.getBestLabel(resource);
String label = (labelStmt == null) ? resource.getURI() : labelStmt.getString();
resources.put(uri, label);
}
Map<String,String> classMapLinks = new TreeMap<String,String>();
for (String name: getClassMapLister().classMapNames()) {
classMapLinks.put(name, server.baseURI() + "directory/" + name);
}
VelocityWrapper velocity = new VelocityWrapper(this, request, response);
Context context = velocity.getContext();
context.put("rdf_link", server.baseURI() + "all/" + classMapName);
context.put("classmap", classMapName);
context.put("classmap_links", classMapLinks);
context.put("resources", resources);
context.put("limit_per_class_map", server.getConfig().getLimitPerClassMap());
velocity.mergeTemplateXHTML("directory_page.vm");
}
示例2: getSubClasses
import com.hp.hpl.jena.rdf.model.Resource; //導入方法依賴的package包/類
private List<Resource> getSubClasses(Resource r) {
List<Resource> resources = new ArrayList<Resource>();
String query = "\n" + "prefix rdfs: <" + RDFS.getURI() + ">\n" + "\n"
+ "select distinct ?class where {\n"
+ " ?class rdfs:subClassOf/rdfs:subClassOf* <" + r.getURI()
+ "> \n" + "}";
ResultSet results = QueryExecutionFactory.create(query, schema)
.execSelect();
while (results.hasNext()) {
resources.add(results.next().getResource("class"));
}
return resources;
}
示例3: setStartupSQLScript
import com.hp.hpl.jena.rdf.model.Resource; //導入方法依賴的package包/類
public void setStartupSQLScript(Resource script) {
assertNotYetDefined(startupSQLScript, D2RQ.startupSQLScript,
D2RQException.DATABASE_DUPLICATE_STARTUPSCRIPT);
startupSQLScript = script.getURI();
}
示例4: setStartupSQLScript
import com.hp.hpl.jena.rdf.model.Resource; //導入方法依賴的package包/類
public void setStartupSQLScript(Resource script) {
checkNotConnected();
assertNotYetDefined(startupSQLScript, D2RQ.startupSQLScript,
D2RQException.DATABASE_DUPLICATE_STARTUPSCRIPT);
startupSQLScript = script.getURI();
}
示例5: create
import com.hp.hpl.jena.rdf.model.Resource; //導入方法依賴的package包/類
/**
* Always succeeds. Check {@link #isValid()} to see if syntax is ok.
* @return <code>null</code> if arg is <code>null</code>
*/
public static ConstantIRI create(Resource iri) {
return iri == null ? null : new ConstantIRI(iri.getURI());
}