上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页
摘要: $(document).ready(function () { $('#sendControl').combobox({ onChange: function (n, o) { if(n==2){ $("#csstr").show(); //显示tr列 ... 阅读全文
posted @ 2017-05-31 14:48 JLCUI 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: 任务分配 任务管理 任务类型 任务状态 车管员姓名 手机号 车牌号 取车车场 开始时间 结束时间 ... 阅读全文
posted @ 2017-05-31 13:45 JLCUI 阅读(235) 评论(0) 推荐(0) 编辑
摘要: package net.joystart.common.util.security; import java.security.MessageDigest; /** * 加密算法工具类 * @author LDY20151214 * */ public class EncryptionUtil { /*** * MD5加密 生成32位md5码 * @pa... 阅读全文
posted @ 2017-05-28 13:51 JLCUI 阅读(2822) 评论(0) 推荐(0) 编辑
摘要: package net.joystart.excelTask; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java... 阅读全文
posted @ 2017-05-19 12:03 JLCUI 阅读(2273) 评论(0) 推荐(0) 编辑
摘要: package net.joystart.excelTask; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io... 阅读全文
posted @ 2017-05-18 14:11 JLCUI 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 1. public int getRandom() { int number = 0; while (true) { number = (int) (Math.random() * 1000);//1000控制位数 1000 :三位 10000:四位 100000:五位 if (number >= 阅读全文
posted @ 2017-05-17 09:48 JLCUI 阅读(167) 评论(0) 推荐(0) 编辑
摘要: async: false 同步 等待上面执行完在往下执行 async: true 异步 不等上面执行完继续往下执行 默认为 (true)异步 阅读全文
posted @ 2017-05-16 17:22 JLCUI 阅读(128) 评论(0) 推荐(0) 编辑
摘要: redisTemplate.execute(new RedisCallback() { public Long doInRedis(RedisConnection connection) throws DataAccessException { long result = 0; result = c 阅读全文
posted @ 2017-05-09 11:59 JLCUI 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: SimpleDateFormat dft = new SimpleDateFormat("yyyy-MM-dd"); Calendar date = Calendar.getInstance(); date.setTime(new Date()); String str = dft.format(d 阅读全文
posted @ 2017-05-06 09:49 JLCUI 阅读(721) 评论(0) 推荐(0) 编辑
摘要: List<String> snList = new ArrayList<>(); List<Position> positionList = VehicleControlUtil.getVehicleLocationBaiDuFromSn(strSn); StringBuffer sb2 = new 阅读全文
posted @ 2017-04-21 14:51 JLCUI 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页