Tag Archives: Java

Eclipse 正则表达式书写测试插件 – 基于java.util.regex

Screenshot:
image
Download the plugin
Last version: Download
Update site: http://regex-util.sourceforge.net/update/
更多信息: http://myregexp.com/eclipsePlugin

More…

Posted in Java | Tagged , , | Leave a comment

在Java中将字符串复制到粘贴板 – Copy String to ClipBoard

在Java应用中将信息复制到粘贴板, 以供后续使用.

Posted in Java | Tagged , , | Leave a comment

AWT中使用文件选择器 Use FileDialog in AWT

在AWT中创建一个文件选择器 选择本机文件.

Posted in Java | Tagged , , , | Leave a comment

使用ArrayList代理进行Map的排序

某Map中散乱的存放着如下信息:
abce.com (1), cde.com (1), abc.com (3), def.com (1), abd.com (2), sfaf.com (1), bcd.com (2)
为了进行排寻 使用ArrayList的sort进行排序.
通过new ArrayL

More…

Posted in Java | Tagged , , | Leave a comment

HashSet – 覆盖equals, hashCode

覆盖equlas 和hashCode两函数, 获得更自由的控制.

Posted in Java | Tagged , , , | Leave a comment