首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate对 oracle 的blob数据类型的处置

2012-09-17 
hibernate对 oracle 的blob数据类型的处理oracle数据库建表语句create table stu(id number(2),name varch

hibernate对 oracle 的blob数据类型的处理
oracle数据库建表语句

create table stu(   id number(2),   name varchar2(16),   filename varchar2(64),   filedata BLOB,   primary key(id));

Stu.java文件

public class Stu implements java.io.Serializable { // Fields private Byte id; private String name; private String filename; private byte[]  filedata;  //此处理将其属性类型设为byte[] // Constructors /** default constructor */ public Stu() { }

剩余部分略去.....

Stu.hbm.xml文件如下:

<hibernate-mapping>    <class name="com.aoyou.mapping.Stu" table="STU" schema="LIXIN03080">        <id name="id" type="java.lang.Byte">            <column name="ID" precision="2" scale="0" />            <generator />        </id>        <property name="name" type="java.lang.String">            <column name="NAME" length="16" />        </property>        <property name="filename" type="java.lang.String">            <column name="FILENAME" length="64" />        </property><hibernate-mapping>    <class name="com.aoyou.mapping.Stu" table="STU" schema="LIXIN03080">        <id name="id" type="java.lang.Byte">            <column name="ID" precision="2" scale="0" />            <generator />        </id>        <property name="name" type="java.lang.String">            <column name="NAME" length="16" />        </property>        <property name="filename" type="java.lang.String">            <column name="FILENAME" length="64" />        </property>        <!-- 注意下面filedata的type为binary -->        <property name="filedata" type="binary">            <column name="FILEDATA" />        </property>    </class></hibernate-mapping>        <property name="filedata" type="binary">            <column name="FILEDATA" />        </property>    </class></hibernate-mapping>

在main方法中测试:

保存数据到数据库:

public static void main(String[] args) throws IOException{         Session session = new Configuration().configure().buildSessionFactory().openSession();        Transaction t = session.beginTransaction();          File file = new File("D:\\购物网站\\二期\\数据库设计.txt");       BufferedReader br = new BufferedReader(new FileReader(file));           Stu stu = new Stu();       stu.setId(2);       stu.setName("mary");       stu.setFilename("数据清单");         String content = "";      String temp = "";      while((temp = br.readLine()) != null){            content += temp;       }       br.close();       stu.setFiledata(content.getBytes());       session.save(stu);         t.commit(); }

读取数据库数据:

public static void main(String[] args) throws IOException{           Session session = new Configuration().configure().buildSessionFactory().openSession();           Transaction t = session.beginTransaction();             String hql = " from Stu  ";           Query query = session.createQuery(hql);           List list = query.list();           if(list != null){                   Stu stu = (Stu)list.get(0);                  System.out.println(stu.getId());                  System.out.println(stu.getName());                  System.out.println(stu.getFilename());                  byte[] b = stu.getFiledata();                 System.out.print(new   String(b,   0,   b.length));           }         t.commit(); }






热点排行