2014年4月5日
摘要: 1 /** 2 * 按照指定的格式格式化时间字符串 如果没有传入字符串,那么按照指定的格式格式化当前时间 3 * @param formatStr 格式后的模样,如:yyyy-MM-dd HH:mm:ss 4 * @param dateStr 要格式的时间字符串 5 * @return 6 */ 7 public static Date sendDate(String formatStr, String dateStr) { 8 DateFormat sdf = new SimpleDateFormat(formatS... 阅读全文
posted @ 2014-04-05 09:51 腾飞工作室 阅读(436) 评论(0) 推荐(0) 编辑
  2014年4月4日
摘要: 在eclipse中 当选中一串字符时,让其他相同字符代码都高亮显示,操作如下:windows-> preferences-> java-> Editor-> Mark Occurences 将里面的相应复选框勾选即可如下图: 阅读全文
posted @ 2014-04-04 22:06 腾飞工作室 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * SHA-1加密 3 * @param strSrc 要加密的字符串 4 * @return 加密后的字符串 5 */ 6 public static String SHAEncrypt(String strSrc) { 7 MessageDigest md = null; 8 String strDes = null; 9 byte[] bt = strSrc.getBytes();10 try {11 md = MessageDig... 阅读全文
posted @ 2014-04-04 10:57 腾飞工作室 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 15位银行卡luhm校验算法 3 * 1、从卡号最后一位数字开始,逆向将奇数位(1、3、5等等)相加。 4 * 2、从卡号最后一位数字开始,逆向将偶数位数字,先乘以2(如果乘积为两位数,则将其减去9),再求和。 5 * 3、将奇数位总和加上偶数位总和,结果应该可以被10整除。 6 * @param temp 前15位 7 * @return 有效卡返回原卡号,无效卡返回空字符串 8 */ 9 public static String luhm(String temp) {10 ... 阅读全文
posted @ 2014-04-04 10:50 腾飞工作室 阅读(1799) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 将数字字符串转成#0.00的货币格式 3 * @param money 4 * @return 5 */ 6 public static String numFormat(String money) { 7 try { 8 return new DecimalFormat("#0.00").format(Double.parseDouble(money)); 9 } catch (Exception e) {10 return "";11 }12 }13 ... 阅读全文
posted @ 2014-04-04 10:11 腾飞工作室 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 日期格式化为字符串 3 * @param date 要格式化的日期 4 * @param pattern 日期的格式,如:yyyy-MM-dd HH:mm:ss 5 * @return 6 */ 7 public static String dateFormat(Date date, String pattern) { 8 if (date == null) { 9 return "";10 }11 try {12 return new SimpleDateFormat(pattern).format(date);1... 阅读全文
posted @ 2014-04-04 10:05 腾飞工作室 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 判断字符串是否为空(这里的空包括null和空字符串和null字符串) 3 * @param str 要判断的字符串 4 * @return 空返回true非空返回false 5 */ 6 public static boolean isNull(Object o) { 7 if (o == null) { 8 return true; 9 }10 if ("".equals(o)) {11 return true;12 ... 阅读全文
posted @ 2014-04-04 09:58 腾飞工作室 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 获取指定长度的数字随机数 3 * @param size 随机数个数 4 * @return 指定长度的数字随机数的字符串 5 */ 6 public static String getRandom(int size) { 7 Random random = new Random(); 8 StringBuilder sb = new StringBuilder(size); 9 for (int i = 0; i < size; i++) {10 sb.append(random.nextInt(9));11 }1... 阅读全文
posted @ 2014-04-04 09:50 腾飞工作室 阅读(409) 评论(0) 推荐(0) 编辑
  2014年3月25日
摘要: java中常用的解析Excel表格的工具一种是POI一种是JXL,POI功能强大,相比JXL稍嫌复杂,对表格样式的处理非常好;而JXL解析简单方便,对中文支持比较好。工作中解析Excel内容上传到数据库常用JXL,而从数据库导出数据到Excel常用POI下面是一个JXL解析Excel的一个简单案例1... 阅读全文
posted @ 2014-03-25 15:51 腾飞工作室 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: nvarchar可变长度的Unicode字符数据varchar可变长度且非 Unicode 的字符数据举例:varchar(1) --可以插进入一个数字或者一个字母,如果要插入一个汉字改为varchar(2)nvarchar(1) --可以插入一个汉字 阅读全文
posted @ 2014-03-25 09:42 腾飞工作室 阅读(188) 评论(0) 推荐(0) 编辑