http://www.moon4chen.com/

06 2015 档案

摘要:System.currentTimeMillis 精准度:ms返回:当前时间与1970年1月1日之间的毫秒差优缺:`精度和准确度可能不够`更改系统时间会影响结果 long start = System.currentTimeMillis(); //do something ... 阅读全文
posted @ 2015-06-23 22:28 谌皓徽 阅读(1804) 评论(0) 推荐(0)
摘要:/** * Class used to run a message loop for a thread. Threads by default do * not have a message loop associated with them; to create one, call * {... 阅读全文
posted @ 2015-06-23 21:36 谌皓徽 阅读(394) 评论(0) 推荐(0)
摘要:按钮点击需要让jpanel实现鼠标点击事件。跟随着效果的切换,即可实现按钮的效果。举个例子:有一个"购买"按钮,images如下normal:mouseOver:disabled:pressed:代码如下:public class ShopButton extends JPanel implemen... 阅读全文
posted @ 2015-06-05 12:09 谌皓徽 阅读(737) 评论(0) 推荐(0)
摘要:/** * 该类用于处理项目资源的工具类 * * 要注意的是:项目资源必须要放到工程目录src下,也可以应用项目外部资源需指明绝对路径 */public class FileUtil { //项目文件必须位于src目录下的下列3个子文件夹之一 private static final String... 阅读全文
posted @ 2015-06-05 11:48 谌皓徽 阅读(400) 评论(0) 推荐(0)