摘要:这几天由于项目需要,处理oracle Clob类型的数据,由于使用的是hibernate,网络上找的文章有太多是讲的hibernate1.x时代的了,通常都是一个强制转化为oracle.sql.CLOB /BLOB,结果当然是不行,因为hibernate2,3封装了一层,返回的实际上是hibernate.SerializableClob... ,还看了一些hibernate UserType的使...
阅读全文
10 2005 档案
摘要:1. 判断所有线程已经结束可以使用线程等待结束的方法:List threadList = new ArrayList();for (int j = 0; j < 100; ++j){GetHttpThread t = new GetHttpThread(urlList.get(j).toString());t.start();threadList.add(t);}for(int i=0;i&...
阅读全文