當前位置: 首頁>>代碼示例>>Java>>正文


Java OWLOntologyManager.loadOntology方法代碼示例

本文整理匯總了Java中org.semanticweb.owlapi.model.OWLOntologyManager.loadOntology方法的典型用法代碼示例。如果您正苦於以下問題:Java OWLOntologyManager.loadOntology方法的具體用法?Java OWLOntologyManager.loadOntology怎麽用?Java OWLOntologyManager.loadOntology使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.semanticweb.owlapi.model.OWLOntologyManager的用法示例。


在下文中一共展示了OWLOntologyManager.loadOntology方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: loadOWLOntology

import org.semanticweb.owlapi.model.OWLOntologyManager; //導入方法依賴的package包/類
public OWLOntology loadOWLOntology(String phy_iri_onto) throws OWLOntologyCreationException{		

		try {
			
			OWLOntologyManager managerOnto;
			managerOnto = SynchronizedOWLManager.createOWLOntologyManager();			
			managerOnto.setSilentMissingImportsHandling(true);									
			return managerOnto.loadOntology(IRI.create(phy_iri_onto));
			
						
		}
		catch(Exception e){
			System.err.println("Error loading OWL ontology: " + e.getMessage());
			//e.printStackTrace();
			throw new OWLOntologyCreationException();
		}
	}
 
開發者ID:ernestojimenezruiz,項目名稱:logmap-matcher,代碼行數:18,代碼來源:BasicMultiplePartitioning.java

示例2: createOwlSimFromOntologyFile

import org.semanticweb.owlapi.model.OWLOntologyManager; //導入方法依賴的package包/類
/**
 * @param file
 * @return
 * @throws OWLOntologyCreationException
 * @throws IOException 
 * @throws OBOFormatParserException 
 */
public static OwlSim createOwlSimFromOntologyFile(File file) throws OWLOntologyCreationException, OBOFormatParserException, IOException {
	OWLOntologyManager m = OWLManager.createOWLOntologyManager();
	OWLOntology ont;
	if (file.getPath().endsWith(".obo")) {
		OBOFormatParser p = new OBOFormatParser();
		OBODoc obodoc = p.parse(file);
		Obo2Owl bridge = new Obo2Owl(m);
		ont = bridge.convert(obodoc);
	}
	else {
		ont = m.loadOntology(IRI.create(file));
	}
	
	return new FastOwlSimFactory().createOwlSim(ont);
}
 
開發者ID:owlcollab,項目名稱:owltools,代碼行數:23,代碼來源:OwlSimUtil.java

示例3: loadOntologyStatic

import org.semanticweb.owlapi.model.OWLOntologyManager; //導入方法依賴的package包/類
private static OWLOntology loadOntologyStatic(IRI uri) throws Exception{
	OWLOntologyManager ontologyManager=OWLManager.createOWLOntologyManager();
	ontologyManager.setSilentMissingImportsHandling(true);
	return ontologyManager.loadOntology(uri);
	
}
 
開發者ID:ernestojimenezruiz,項目名稱:logmap-matcher,代碼行數:7,代碼來源:FromRDFAlign2OWL.java

示例4: loadOntology

import org.semanticweb.owlapi.model.OWLOntologyManager; //導入方法依賴的package包/類
private OWLOntology loadOntology(IRI uri) throws Exception{
	OWLOntologyManager ontologyManager=OWLManager.createOWLOntologyManager();
	return ontologyManager.loadOntology(uri);
	
}
 
開發者ID:ernestojimenezruiz,項目名稱:logmap-matcher,代碼行數:6,代碼來源:OWLAlignmentReader.java

示例5: loadOWLOntology

import org.semanticweb.owlapi.model.OWLOntologyManager; //導入方法依賴的package包/類
private OWLOntology loadOWLOntology(String iri_onto) throws OWLOntologyCreationException{		

		OWLOntologyManager managerOnto = SynchronizedOWLManager.createOWLOntologyManager();
		
		managerOnto.setSilentMissingImportsHandling(true);
									
		return managerOnto.loadOntology(IRI.create(iri_onto));
		
	}
 
開發者ID:ernestojimenezruiz,項目名稱:logmap-matcher,代碼行數:10,代碼來源:LogMap2_OAEI_BioPortal.java


注:本文中的org.semanticweb.owlapi.model.OWLOntologyManager.loadOntology方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。