`
文章列表
在ORACLE存储过程中创建临时表   Java代码   create or replace procedure select_look   as   str varchar2(100);   begin   str:='select * from emp';   execute immediate str;   end;   在ORACLE存储过程中创建临时表   2007年11月15日 星期四 14:27   Java代码   create procedure pro   as   str varchar2(100);   begin   str:='CREA ...

oralce游标使用

create or replace procedure transportData_1 is cursor mycursor is select * from zjx_1; v_user zjx_1%rowtype; begin open mycursor; loop fetch mycursor into v_user; exit when mycursor%notfound; insert into Zjx_3 values(v_user.name,v_user.age); end loop; Exception When other ...
我以前用过EJB3.0开发过两个项目,除了它依赖于服务器容器的重量级外,我并没有看到它所谓的侵入性,所以当看到资料说EJB是侵入性的时候,会感到难以理解,因为使用EJB3的时候甚至感觉它比Spring还要好用。 但想不到2011年的今天,我竟然还能使用ejb2.0开发项目,虽则痛苦,其实也算是一种幸运吧。 至少让我体会到了遭到口诛笔伐的EJB2的侵入性,同时越是使用老的技术,才有更接近于原理之感,现贴上一个小例子,是自己写的ejb2的helloworld,只因网上并无实质资料,所以虽则简单,犹以能助后来者。 1,在ejb工程下,新建一個sessionbean:HelloBean, pack ...
ClassPathResource --- 从系统的类路径中加载 FileSystemResource --- 从文件系统加载,比如说自己指定配置文件的全路径 InputStreamResource --- 从输入流中加载 ServletContextResource --- 从Servlet 上下文环境中加载 UrlResource --- 从指定的Url加载

复制文件内容

    博客分类:
  • java
/** *可以将一份模板复制到指定位置 * 将指定的源文件复制到目标地址。 * * @param src * 源文件的全路径。 * @param dest * 目标文件路径。 * @return 文件拷贝操作结果:true成功,false失败。 */ public static boolean copyFile( String src, String dest ) { boolean copyState ...

测试私有方法

public abstract class ExtensibleTestCase extends UnitilsJUnit4 { protected Object CallByName( Object object, String method, Object... args ) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, NoSuchMethodException { int ar ...

ibatis错误提示

The error happened while setting a property on the result object. 当使用ibatis时,报这个错误的时候,是因为表中某列值为空的话,ibatis不知道将这个空值怎么样转换为返回值中对应的默认值,比如列值是空,他返回null还是0还是""。绝大多数情况应该是对应属性为int类型,可以将int改为Integer,或者对数据库表进行控制。

sqllite数据库

sqllite数据库是运行在本地的一个数据库。

Spring rmi

...

GridData

    博客分类:
  • SWT
GridLayout //容器下面元素的列数,makeColumnsEqualWidth是否相同大小单元格 public GridLayout(int numColumns, boolean makeColumnsEqualWidth); GridData类可以与GridLayout类配合使用,其中构造函数有: public GridData(); public GridData(int style); //设置控件的宽、高度 public GridData(int width, int height); // horizonta ...
String regEx = "[\u4e00-\u9fa5]";         Pattern p = Pattern.compile(regEx);         Matcher m = p.matcher(str);         while (m.find())         {             return true;         }         return false;
rcp定制欢迎界面可以在root.xhtml中用html语句创建页面,如果有根据数据库动态显示数据,可以定义一个类,实现IIntroXHTMLContentProvider接口。在其createContent方法中用硬编码的方式写HTML,例如 : Element ahref = dom.createElement("a"); ahref.setAttribute("class", "A"); ahref.setAttribute("id", "tutorials" ...
可以用getShell().setlocation(x,y);设置

Collections.sort

    博客分类:
  • java
Collections.sort(logList, new LogComparator1()); class LogComparator1 implements Comparator<TblSysLog> { @Override public int compare(TblSysLog o1, TblSysLog o2) { if (isAsec) { if (o1.getUserid().comp ...
在java中,数组对象创建的时候类型是确定,而不管其存储的元素类型如何。 譬如一个Object[],里面存储的是String类型,但是并不是强制转换成String[]。运行时候会报classcast异常。 只能遍历强制转换。
Global site tag (gtag.js) - Google Analytics