上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 38 下一页
From: http://www.ibm.com/developerworks/cn/java/j-concurrent/?ca=j-r Read More
posted @ 2010-09-06 23:01 BloodAndBone Views(197) Comments(0) Diggs(0) Edit
class BucketTableModel extends DefaultTableModel { //设置Table项不可修改 public boolean isCellEditable(int row, int column) { return false; } } DefaultTableModel tableModel = new BucketTableModel(); Read More
posted @ 2010-09-06 14:43 BloodAndBone Views(1899) Comments(0) Diggs(0) Edit
原文:http://www.ibm.com/developerworks/cn/java/j-jws5/ Read More
posted @ 2010-08-30 17:03 BloodAndBone Views(381) Comments(0) Diggs(0) Edit
原文:http://www.ibm.com/developerworks/cn/java/j-jws4/ Read More
posted @ 2010-08-30 16:58 BloodAndBone Views(277) Comments(0) Diggs(0) Edit
第一部分:BASE64 编码是一种常用的字符编码,在很多地方都会用到。JDK 中提供了非常方便的 BASE64Encoder 和 BASE64Decoder,用它们可以非常方便的完成基于 BASE64 的编码和解码。下面是本人编的两个小的函数,分别用于 BASE64 的编码和解码: import sun.misc.BASE64Encoder; import sun.misc.BASE64Deco... Read More
posted @ 2010-08-26 16:32 BloodAndBone Views(660) Comments(0) Diggs(0) Edit
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 38 下一页