上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 72 下一页
摘要: import java.util.concurrent.Callable; public class MyCallable implements Callable { private String name; public MyCallable(String name){ this.name=name; } @Override pub... 阅读全文
posted @ 2017-08-03 16:28 tonggc1668 阅读(550) 评论(0) 推荐(0)
摘要: public static void findMaxCountChar(String str) { if (str == null || str == "") return; Map map = new HashMap(); int maxCount = 0; String maxCountStr = "";... 阅读全文
posted @ 2017-07-23 11:07 tonggc1668 阅读(193) 评论(0) 推荐(0)
摘要: 十几M小文件 360843672641 100多M文件 19547561027038718 300多M文件 411561360985639500 1.7G文件 202156225109 出错,可能超过限制163719 阅读全文
posted @ 2017-07-22 21:48 tonggc1668 阅读(143) 评论(0) 推荐(0)
摘要: CREATE TABLE `tab_menu` ( `MU_ID` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键', `MU_NAME` varchar(255) NOT NULL COMMENT '菜单名', `MU_CODE` varchar(100) DEFAULT NULL COMMENT '菜单编码', `MU_CHAI... 阅读全文
posted @ 2017-07-20 11:55 tonggc1668 阅读(803) 评论(0) 推荐(0)
摘要: public class DateAdapterForDay extends XmlAdapter { private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); @Override public String marshal(Date v) throws Ex... 阅读全文
posted @ 2017-07-19 09:44 tonggc1668 阅读(142) 评论(0) 推荐(0)
摘要: import java.text.SimpleDateFormat;import java.util.Date; import javax.xml.bind.annotation.adapters.XmlAdapter; 阅读全文
posted @ 2017-07-19 09:44 tonggc1668 阅读(251) 评论(0) 推荐(0)
摘要: package com.yd.wmsc.util; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; ... 阅读全文
posted @ 2017-07-16 16:21 tonggc1668 阅读(194) 评论(0) 推荐(0)
摘要: 1.创建新类时自动生成注释 window->preference->java->code styple->code template 当你选择到这部的时候就会看见右侧有一个框显示出code这个选项,你点开这个选项,点一下他下面的New Java files 然后你点edit按钮,把他的内容换成你的就 阅读全文
posted @ 2017-07-05 15:20 tonggc1668 阅读(398) 评论(0) 推荐(0)
摘要: 不同舍入模式下的舍入操作汇总 阅读全文
posted @ 2017-07-04 16:10 tonggc1668 阅读(1477) 评论(0) 推荐(0)
摘要: import java.io.UnsupportedEncodingException; import java.security.NoSuchAlgorithmException; import java.security.MessageDigest; public class MD5WLBUtil { public static byte[] md54wlb(final byte[... 阅读全文
posted @ 2017-06-30 09:41 tonggc1668 阅读(161) 评论(0) 推荐(0)
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 72 下一页