以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 RSS/FOAF/Dublin Core/CIM/PRISM/Gene Ontology 』  (http://bbs.xml.org.cn/list.asp?boardid=3)
----  实现将OWL本体文件存储到MySQL数据库出现异常  (http://bbs.xml.org.cn/dispbbs.asp?boardid=3&rootid=&id=103157)


--  作者:星火辉煌
--  发布时间:8/23/2011 2:11:00 PM

--  实现将OWL本体文件存储到MySQL数据库出现异常

import java.io.*;
import java.sql.SQLException;
import com.hp.hpl.jena.db.*;
import com.hp.hpl.jena.rdf.model.*;

public class Persistent {
  public static final String strDriver = "com.mysql.jdbc.Driver";
  public static final String strURL = "jdbc:mysql://localhost:3306/jena";
 // localhost的后面要直接写冒号,再写3306;
  public static final String strUser = "root";
  public static final String strPassword = "root";
  public static final String strDB = "MySQL";
 
  public static void main(String[] args){
   try {
    DBConnection connection = new DBConnection(strURL, strUser, strPassword, strDB);
    // 创建连接时,第四个参数需要指定所用的数据库类型;也就是说strDB的值应该是“MySQL”
    try {
     Class.forName("com.mysql.jdbc.Driver");
     System.out.println("驱动程序已经安装。");
    } catch (ClassNotFoundException e){
     System.out.println("ClassNotFoundException, Driver is not available");
     }
    System.out.println("数据库连接成功。");
    
    // 从此处开始读入一个OWL文件并且存储到数据库中;
    ModelMaker maker = ModelFactory.createModelRDBMaker(connection);
 // 使用数据库连接参数创建一个模型制造器
    Model defModel = maker.createModel("guohua");
      // 创建一个默认模型,命名为国画,因为我要存入的OWL文件名是国画
    System.out.println("检查点");
    FileInputStream read = null;
    try{
     File file = new File("F:/guohua/guohua.owl");
     
     read = new FileInputStream(file);
    }catch (FileNotFoundException e){
     e.printStackTrace();
     System.out.println("未找到要存储的本体文件,请检查文件地址及名称");
    }
    System.out.println("已将本体文件转换为字节流文件。");
 
    InputStreamReader in = null;
    try {
     in = new InputStreamReader((FileInputStream)read, "UTF-8");
    } catch (UnsupportedEncodingException e) {
     e.printStackTrace();
     System.out.println("不支持上述字符集。");
    }
    System.out.println("已将字节流文件转换为UTF-8编码。");
    
    defModel.read(in,null);
    try {
     in.close();
    } catch (IOException e){
     e.printStackTrace();
     System.out.println("无法关闭字节流文件。");
    }
    System.out.println("已将字节流文件关闭。");
    
    defModel.commit();
    System.out.println("数据转换执行完毕,已将本体文件存入数据库。");
    try{
     connection.close();
    } catch (SQLException e){
     e.printStackTrace();
     System.out.println("文件无法关闭。");
    }
   } catch (RDFRDBException e){
    System.out.println("出现异常");
    }
   System.out.println("已将本体文件持久化到数据库中");
   }
 }


出现的结果:
驱动程序已经安装。
数据库连接成功。
出现异常
已将本体文件持久化到数据库中


--  作者:星火辉煌
--  发布时间:8/23/2011 2:29:00 PM

--  
数据库的密码应该是你自己设置的那个,不一定是root
W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
101.563ms