• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java HTTPRepository类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.openrdf.repository.http.HTTPRepository的典型用法代码示例。如果您正苦于以下问题:Java HTTPRepository类的具体用法?Java HTTPRepository怎么用?Java HTTPRepository使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



HTTPRepository类属于org.openrdf.repository.http包,在下文中一共展示了HTTPRepository类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: createStore

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
/**
 * Create the store provided by this SailProvider
 *
 * @return a new instance of the store
 */
@Override
public NotifyingSail createStore() {
    String serverUrl = configurationService.getStringConfiguration("backend.http.url");
    if(serverUrl == null) {
        throw new IllegalStateException("no server URL defined for HTTP backend (property backend.http.url)");
    }

    log.info("creating new HTTP repository client for server at {}", serverUrl);

    httpRepository = new HTTPRepository(serverUrl);

    // TODO: would be better to implement a RepositorySail as NotifyingSail wrapper around a repository
    Federation store = new Federation();
    store.addMember(httpRepository);

    return (NotifyingSail)store;
}
 
开发者ID:apache,项目名称:marmotta,代码行数:23,代码来源:HTTPStoreProvider.java


示例2: tweetToTripleStore

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
private Boolean tweetToTripleStore(String user_uri, String repository) 
  		throws RepositoryException, RDFParseException, IOException{
  	
  	File file = new File(TMP_FILE_NAME);
String baseURI = user_uri;

   repository = strip(repository);	
   	        
Repository rep = new HTTPRepository(repository);
ValueFactory f = rep.getValueFactory();
   URI context = f.createURI(baseURI);

   
   RepositoryConnection con = rep.getConnection();
   try {
      con.add(file, baseURI, RDFFormat.RDFXML,context);
   }
   finally {
      con.close();
   }

  	return true;
  }
 
开发者ID:athalhammer,项目名称:RENDER-ranking-service,代码行数:24,代码来源:TwitterDataService.java


示例3: clearTweets

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
/**
 * Removes any possible existing from the repository about the profile 
 * specified by the account_uri
 * @param account_uri
 * @param repo
 * @throws RepositoryException 
 */
private void clearTweets(String account_uri, String repository) 
		throws RepositoryException {
	
	Repository rep = new HTTPRepository(repository);
	ValueFactory f = rep.getValueFactory();
    URI context = f.createURI(account_uri);
   
    RepositoryConnection con = rep.getConnection();
    try {
    	con.clear(context);
    }
    finally {
    	con.close();
    }
}
 
开发者ID:athalhammer,项目名称:RENDER-ranking-service,代码行数:23,代码来源:TwitterDataService.java


示例4: sparqlSelect

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
public QueryResultTable sparqlSelect(String endpointURL, String sparqlQuery) {
	HTTPRepository endpoint = new HTTPRepository(endpointURL, "");
	try {
		endpoint.initialize();
		RepositoryConnection connection = endpoint.getConnection();
		
		return new RepositoryQueryResultTable(sparqlQuery, connection);
	} catch(RepositoryException e) {
		throw new ModelRuntimeException(e);
	}
	
}
 
开发者ID:semweb4j,项目名称:semweb4j,代码行数:13,代码来源:RepositoryModelFactory.java


示例5: init

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
@Override
public Resource init() throws ResourceInstantiationException {
	try {
		rep = new HTTPRepository(repositoryUrl);
		conn = rep.getConnection();
	}
	catch (RepositoryException e) {
		throw new ResourceInstantiationException(e);
	}
	return this;
}
 
开发者ID:Network-of-BioThings,项目名称:GettinCRAFTy,代码行数:12,代码来源:SesameEnrichment.java


示例6: findPlaces

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
void findPlaces() throws IOException{

        String sesameServer = "http://localhost:8080/openrdf-sesame";
        String repositoryID = "legislation";

        // Connect to Sesame
        Repository repo = new HTTPRepository(sesameServer, repositoryID);
        
        try {
            repo.initialize();
        } catch (RepositoryException ex) {
            Logger.getLogger(EntityIndex.class.getName()).log(Level.SEVERE, null, ex);
        }
        
        TupleQueryResult result;
        
        try {
           
            RepositoryConnection con = repo.getConnection();
            
            try {
                
                String queryString = "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n" +
                "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n" +
                "PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>\n" +
                "PREFIX owl: <http://www.w3.org/2002/07/owl#>\n" +
                "\n" +
                "SELECT DISTINCT ?name ?id \n" +
                "WHERE{\n" +
                "?id <http://geo.linkedopendata.gr/gag/ontology/έχει_επίσημο_όνομα> ?name." +
                "}\n" ;
                
                //System.out.println(queryString);
                TupleQuery tupleQuery = con.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
                result = tupleQuery.evaluate();

                try {
                    // iterate the result set
                    while (result.hasNext()) {
                        
                        BindingSet bindingSet = result.next();
                        String name = bindingSet.getValue("name").toString();
                        name = name.replace("^^<http://www.w3.org/2001/XMLSchema#string>", "");
                        name = trimDoubleQuotes(name);
                        String id = bindingSet.getValue("id").toString();
                        addDoc(indexWriter,name,id);
                        System.out.println(name);
                    }
                    
                }
                finally {
                    result.close();
                }    
            }
            finally {
                con.close();
            }
        }
        catch (OpenRDFException e) {
            // handle exception
        }
    }
 
开发者ID:iliaschalkidis,项目名称:nomothesia-g3-parser,代码行数:63,代码来源:EntityIndex.java


示例7: findOrganizations

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
void findOrganizations() throws IOException{

        String sesameServer = "http://localhost:8080/openrdf-sesame";
        String repositoryID = "legislation";

        // Connect to Sesame
        Repository repo = new HTTPRepository(sesameServer, repositoryID);
        
        try {
            repo.initialize();
        } catch (RepositoryException ex) {
            Logger.getLogger(EntityIndex.class.getName()).log(Level.SEVERE, null, ex);
        }
        
        TupleQueryResult result;
        
        try {
           
            RepositoryConnection con = repo.getConnection();
            
            try {
                
                String queryString = "PREFIX pb: <http://geo.linkedopendata.gr/public-buildings/ontology/>\n" +
                "\n" +
                "SELECT DISTINCT ?name ?id \n" +
                "WHERE{\n" +
                "?id pb:έχει_όνομα_υπηρεσίας ?name." +
                "}\n" ;
                
                //System.out.println(queryString);
                TupleQuery tupleQuery = con.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
                result = tupleQuery.evaluate();

                try {
                    // iterate the result set
                    while (result.hasNext()) {
                        
                        BindingSet bindingSet = result.next();
                        String name = bindingSet.getValue("name").toString();
                        name = name.replace("^^<http://www.w3.org/2001/XMLSchema#string>", "");
                        name = trimDoubleQuotes(name);
                        String id = bindingSet.getValue("id").toString();
                        addDoc(indexWriter,name,id);
                        System.out.println(name);
                    }
                    
                }
                finally {
                    result.close();
                }    
            }
            finally {
                con.close();
            }
        }
        catch (OpenRDFException e) {
            // handle exception
        }
    }
 
开发者ID:iliaschalkidis,项目名称:nomothesia-g3-parser,代码行数:60,代码来源:EntityIndex.java


示例8: findPeople

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
void findPeople() throws IOException{

        String sesameServer = "http://localhost:8080/openrdf-sesame";
        String repositoryID = "dbpedia";

        // Connect to Sesame
        Repository repo = new HTTPRepository(sesameServer, repositoryID);
        
        try {
            repo.initialize();
        } catch (RepositoryException ex) {
            Logger.getLogger(EntityIndex.class.getName()).log(Level.SEVERE, null, ex);
        }
        
        TupleQueryResult result;
        
        try {
           
            RepositoryConnection con = repo.getConnection();
            
            try {
                
                String queryString = "PREFIX ontology: <http://dbpedia.org/ontology/>\n" +
                "PREFIX prop: <http://el.dbpedia.org/property/>\n" +
                "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n" +
                "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n" +
                "\n" +
                "select distinct ?id ?name ?image\n" +
                "where {\n" +
                "?id rdf:type ontology:Politician.\n" +
                "?id foaf:name ?name.\n" +
                "\n" +
                "{?id prop:εθνικότητα <http://el.dbpedia.org/resource/Έλληνας>} UNION {?id prop:εθνικότητα \"Ελληνική\"@el} UNION {?id prop:εθνικότητα <http://el.dbpedia.org/resource/Έλληνες>}\n" +
                "\n" +
                "}";
                
                //System.out.println(queryString);
                TupleQuery tupleQuery = con.prepareTupleQuery(QueryLanguage.SPARQL, queryString);
                result = tupleQuery.evaluate();

                try {
                    // iterate the result set
                    while (result.hasNext()) {
                        
                        BindingSet bindingSet = result.next();
                        String name = bindingSet.getValue("name").toString();
                        name = name.replace("^^<http://www.w3.org/2001/XMLSchema#string>", "");
                        name = this.capitalize(trimDoubleQuotes(name.replace("@el", "")));
                        String id = bindingSet.getValue("id").toString().replace("resource", "page");
                        addDoc(indexWriter,name,id);
                        System.out.println(name);
                    }
                    
                }
                finally {
                    result.close();
                }    
            }
            finally {
                con.close();
            }
        }
        catch (OpenRDFException e) {
            // handle exception
        }
    }
 
开发者ID:iliaschalkidis,项目名称:nomothesia-g3-parser,代码行数:67,代码来源:EntityIndex.java


示例9: ConnectionToVirtuoso

import org.openrdf.repository.http.HTTPRepository; //导入依赖的package包/类
public RepositoryConnection ConnectionToVirtuoso() throws RepositoryException {
    String endpointURL = "http://virtuoso.ct.infn.it:8890/sparql";
    // String endpointURL ="http://virtuoso.ct.infn.it:8896/chain-reds-kb/sparql";


    Repository myRepository = new HTTPRepository(endpointURL, "");

    myRepository.initialize();
    RepositoryConnection virtuosoConnection = myRepository.getConnection();

    System.out.println("Connessione a Virtuoso");

    return virtuosoConnection;
}
 
开发者ID:csgf,项目名称:semantic-search-api,代码行数:15,代码来源:SemanticQuery.java



注:本文中的org.openrdf.repository.http.HTTPRepository类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java SignChangeEvent类代码示例发布时间:2022-05-22
下一篇:
Java NamenodeCommand类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap