本体模型存储到mysql_使用Jena将本体解析存储到数据库(二)

2012-03-16

-- 将本体存入MySQL

import java.io.*;

import java.sql.SQLException;

import com.hp.hpl.jena.db.*;

import com.hp.hpl.jena.rdf.model.*;

public class Onto2Database{

public

static final String strDriver = "com.mysql.jdbc.Driver"; //path of

driver class

public

static final String strURL = "jdbc:mysql://localhost/OntoDB"; //

URL of database

public

static final String strUser = "root"; //database user id

public

static final String strPassWord = "onto"; //database password

public

static final String strDB =  "MySQL"; //database

type

public

static void main(String[] args){

try{

//

创建一个数据库连接

IDBConnection conn = new DBConnection ( strURL,

strUser, strPassWord, strDB );

// 加载数据库驱动类,需要处理异常

try{

Class.forName(strDriver);

}catch(ClassNotFoundException e) {

System.out.println("Driver is not

available...");

}

//

使用数据库连接参数创建一个模型制造器

ModelMaker maker =

ModelFactory.createModelRDBMaker(conn);

// 创建一个默认模型,命名为 MyOntology

Model defModel =

maker.createModel("MyOntology");

// 准备需要存入数据库的本体文件,建立输入文件流

FileInputStream inputSreamfile = null;

try {

File file =

newFile("G:\\eclipse\\workspace.thesis\\data\\MyOntology.owl");

inputSreamfile = new FileInputStream(file);

} catch (FileNotFoundException e) {

e.printStackTrace();

System.out.println("Ontology File is not

available...");

}

InputStreamReader in = null;

try {

in = new

InputStreamReader(inputSreamfile,"UTF-8");

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

//

读取文件

defModel.read(in,null);

//

关闭输入流读取器

try {

in.close();

} catch (IOException e) {

e.printStackTrace();

}

// 执行数据转换,将本体数据存入数据库

defModel.commit();

//

关闭数据库连接

try {

conn.close();

} catch (SQLException e) {

e.printStackTrace();

}

}catch(RDFRDBException e){

System.out.println("Exceptions occur...");

}

}

} // 代码结束

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值