<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> <%@ page import="java.util.List"%> <%@ page import="java.util.Iterator"%> <%@ page import="java.util.ArrayList"%> <%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest"%> <%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Ontology"%> <%@ page import="edu.cornell.mannlib.vitro.webapp.dao.OntologyDao"%> <%@ taglib prefix="vitro" uri="/WEB-INF/tlds/VitroUtils.tld" %>

Export to RDF

  • Entire RDF model for the VIVO application (TBox and ABox, including application metadata)
  • Entire ontology (TBox) for the VIVO application
  • All Instance data (ABox) for the VIVO application
  • <%VitroRequest vreq = new VitroRequest(request); OntologyDao daoObj = vreq.getFullWebappDaoFactory().getOntologyDao(); List ontologiesObj = daoObj.getAllOntologies(); if(ontologiesObj !=null && ontologiesObj.size()>0){ Iterator ontItr = ontologiesObj.iterator(); while(ontItr.hasNext()){ Ontology ont = (Ontology) ontItr.next();%>
  • /> <%=ont.getName()%> (TBox)
  • <%}}%>

  • Export only asserted statements
  • Export only inferred statements
  • Export asserted and inferred statements together

Select format