上一页 1 ··· 42 43 44 45 46
摘要: 开始钻研工作流的东西,第一颗钉子,笔记之:错误信息:jBPM4.4 no jBPM DB schema: no JBPM4_EXECUTION table. Run the create.jbpm.schema target first in the install tool.分析:JBPM初始化建立表格时create语句错误,如下:create table JBPM4_DEPLOYMENT ( DBID_ bigint not null, NAME_ longtext, TIMESTAMP_ bigint, STATE_ varchar(255), primary key (DBI... 阅读全文
posted @ 2012-03-04 03:01 horizon~~~ 阅读(5441) 评论(0) 推荐(1) 编辑
摘要: public class ttt { public static int[] ii = new int[]{1,2,3,4,5,6,7,8,9,10,11}; public static int start = 0; public static int end = 0; public static int middle = 0; String n = ""; public void twoF(int aa,int m){ n += (m+1+"-"); if(aa!=ii[m]){ ... 阅读全文
posted @ 2011-12-19 21:49 horizon~~~ 阅读(201) 评论(0) 推荐(0) 编辑
摘要: package com.company.Tt;import java.util.Scanner;public class T4 { public static void main(String[] args) { Scanner cs = new Scanner(System.in); System.out.println("请输入一个多位整数来计算出0到该数的1出现的个数......"); int n = cs.nextInt(); //要求操作者输入一个正整数 T4 t = new T4(); //声明一个T4类的对象 t.finds2(n); //调用... 阅读全文
posted @ 2011-12-14 08:48 horizon~~~ 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 转载:http://blog.sina.com.cn/s/blog_4b3646350100dssf.htmlwindow.close()在IE下可以执行关闭,但在Firefox下不关闭,网上有好多的答案,但都实现不了,经过仔细查找问题不是JS代码window.close()的问题,而是Firefox的配置问题,解决方法如下:在Firefox地址栏里输入 about:config在配置列表中找到dom.allow_scripts_to_close_windows点右键的选切换把上面的false修改为true即可。注:默认是false,是为了防止脚本乱关窗口另附代码:window.opener 阅读全文
posted @ 2011-12-06 18:23 horizon~~~ 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 1.导入ibatis-2.3.4.726.jar; mysql-connector-java-5.1.8-bin.jar两个包2.在pojo包下建一个javabean文件User.Java:package pojo;import java.util.Date;public class User { private int id; private String name; private Date birthday; 省略get和set方法}3.在pojo包下建一个User.xml的映射文件 ... 阅读全文
posted @ 2011-11-22 19:26 horizon~~~ 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 用Div+CSS进行网站布局时,做一些浮动层等特殊特殊效果时要考虑到定位问题。这就要用到Position属性等。Position属性有四个值:static、fixed、absolute和relative,后面两个在布局中的定位里是经常用到的,顾名思义,absolute是指绝对定位,即将对象从文档流中拖出,使用left,right,top,bottom等属性进行绝对定位,而其层叠通过z-index属性定义。此时对象不具有边距,但仍有补白和边框。ralative是指相对定位,就是依据left,right,top,bottom等属性在正常文档流中偏移位置。 怎么个绝对法,又怎么个相对法呢?今天我特意 阅读全文
posted @ 2011-10-06 09:23 horizon~~~ 阅读(505) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46