摘要:
/** * @FILE : SushuJudge.java * @PACKAGE : interview * @DESCIPTION : * @AUTHOR : wangkun * @VERSION : v1.0 * @DATE : 2013-6-24 下午05:34:45 */package interview;import java.util.ArrayList;import java.util.List;/** *************************************************************** ... 阅读全文
摘要:
public class MultiplicationTable {/** * @description 写一个方法,用一个for循环打印九九乘法表 * @author wangkun * @param args */public static void main(String[] args) {int i,j; for (i = 1 ; i <= 9 ; i ++){ for(j = 1 ; j <= i ; j ++){ System.out.print(j + "*" + i + "=" + i * j + " ") 阅读全文
摘要:
一、控制台指令:archetype:generate -DarchetypeArtifactId=maven-archetype-webapp然后会出现如下让你输入:Define value for property 'groupId': : com.xjdDefine value for property 'artifactId': : mywebappDefine value for property 'version': 1.0-SNAPSHOT: :Define value for property 'package': 阅读全文
摘要:
[condition][]规则开始=$list : ArrayList() 解释: 需要在java类中写上如下才能满足条件: WorkingMemory workingMemory = ruleBase.newStatefulSession(); List list= new ArrayList(); workingMemory.insert( list ); workingMemory.fireAllRules(); 阅读全文
摘要:
1.salience功能:设置规制执行的优先级值:数字(数字越大执行优先级越高)示例:rule "rule1" salience 1 wheneval(true) then System.out.println("rule1");end2.no-loop功能:控制已经执行的规则条件再次满足是否再次执行值:true/false示例:rule "rule1" no-loop true when $customer:Customer(name=="张三") then update($customer); System.o 阅读全文
摘要:
this.cm = new Ext.grid.ColumnModel({id : 'paytype',header : '付款方式',dataIndex : 'paytype',renderer : function(val, meta) {switch (val) {case 0:return '全额付款';break;case 1:return '按揭付款';break;}return val;}}) 阅读全文
摘要:
表格列:DomUrl函数: 阅读全文
摘要:
dao层方法public void batchInsertTTaskPara(List<TTaskPara> tTaskParaList) throws INASSQLException { long st = new Date().getTime(); getSqlSession().insert("com.ustcinfo.inas.bussinessCheck.dao.sqlmap.TTaskParaMapper.batchInsertTTaskPara2",tTaskParaList); long et = new Date().getTime(); l 阅读全文
摘要:
打开本地数据库对应的服务net start OracleServiceORCL启动监听:lsnrctl start 查看监听:lsnrctl status 停止监听:lsnrctl stop 阅读全文
摘要:
BufferedReader r = new BufferedReader(clob.getCharacterStream()); StringBuffer sb = new StringBuffer(); String s; while((s=r.readLine())!=null){ sb.append(s); } r.c... 阅读全文