上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: /** * @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;/** *************************************************************** ... 阅读全文
posted @ 2013-06-24 18:09 合肥房屋托管 阅读(4029) 评论(0) 推荐(0) 编辑
摘要: 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 + " ") 阅读全文
posted @ 2013-06-20 14:23 合肥房屋托管 阅读(8744) 评论(1) 推荐(0) 编辑
摘要: 一、控制台指令: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': 阅读全文
posted @ 2013-06-09 15:14 合肥房屋托管 阅读(4750) 评论(0) 推荐(0) 编辑
摘要: [condition][]规则开始=$list : ArrayList() 解释: 需要在java类中写上如下才能满足条件: WorkingMemory workingMemory = ruleBase.newStatefulSession(); List list= new ArrayList(); workingMemory.insert( list ); workingMemory.fireAllRules(); 阅读全文
posted @ 2013-06-06 09:38 合肥房屋托管 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2013-05-29 11:24 合肥房屋托管 阅读(2038) 评论(0) 推荐(1) 编辑
摘要: 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;}}) 阅读全文
posted @ 2013-05-28 16:16 合肥房屋托管 阅读(1595) 评论(0) 推荐(0) 编辑
摘要: 表格列:DomUrl函数: 阅读全文
posted @ 2013-05-28 16:13 合肥房屋托管 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2013-04-27 11:54 合肥房屋托管 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 打开本地数据库对应的服务net start OracleServiceORCL启动监听:lsnrctl start 查看监听:lsnrctl status 停止监听:lsnrctl stop 阅读全文
posted @ 2013-04-27 11:10 合肥房屋托管 阅读(197) 评论(0) 推荐(0) 编辑
摘要: BufferedReader r = new BufferedReader(clob.getCharacterStream()); StringBuffer sb = new StringBuffer(); String s; while((s=r.readLine())!=null){ sb.append(s); } r.c... 阅读全文
posted @ 2013-03-19 17:14 合肥房屋托管 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页