java language
文章平均质量分 67
wuyaowen2000
java技术、php技术、数据库技术爱好者。
展开
-
获取今天的开始时间和结束时间
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,S");Calendar todayStart = Calendar.getInstance();todayStart.set(Calendar.HOUR, 0);todayStart.set(Calendar.MINUTE, 0);todayStar...2010-04-30 11:48:26 · 186 阅读 · 0 评论 -
JavaMail外发邮件
import javax.mail.*;import javax.mail.internet.*;import java.util.*;/** * usage: java SendingMail * with proxy: java -DsocksProxyHost=socks-server.ibm.com -DsocksProxyPort=1080 SendingMai...原创 2010-12-16 11:21:52 · 205 阅读 · 0 评论 -
Java判断图片文件的格式是否为jpg
这里不讨论通过文件后缀名的判断方式,因为可以很容易的手动修改后缀名。 这里讨论如何通过文件的二进制流来判断一张图片是否为jpg格式的图片。对图像图像不太了解,请教了一位图像方向的同事后,大致了解了一些,这里写出来,作为笔记和分享。 原理很简单:所有JPG/JPEG格式的图片都是以十六进制的'FF D8'作为文件开始,'FF D9'作为文件结束标志。FF等为16进制数据,占文件的1 ...原创 2010-11-26 15:22:58 · 2896 阅读 · 0 评论 -
Java RMI 例子 和一些常见问题
看到设计模式代理模式时,有个RMI的例子,虽然概念上比较简单,但是自己动手写个例子验证一下。 依然是经典的 hello world,呵呵。首先是一个客户端和服务端都需要的接口。import java.rmi.*;public interface MyRemote extends Remote {String sayHello() throws RemoteException...原创 2012-11-25 20:37:10 · 131 阅读 · 0 评论 -
EasyMock, PowerMock 一起mock静态方法 static method
在哪下载包就不说了,要下这么几个:easymock-3.1easymockclassextension-3.1powermock-easymock-junit-1.5 创建一个待会儿被mock的类, Jobpackage com.jwu.mock;import java.util.Random;public class Job { public...原创 2012-12-10 22:41:47 · 992 阅读 · 0 评论 -
mock System class with powermock
Use the @RunWith(PowerMockRunner.class) annotation at the class-level of the test case.Use the @PrepareForTest({ClassThatCallsTheSystemClass.class}) annotation at the class-level of the test ca...原创 2013-12-02 14:13:14 · 414 阅读 · 0 评论 -
Java 变量名不是引用本身
Java里面对象的传递是通过对象的引用,而引用又是用变量名表示的,但是注意变量名不是引用本身。如下示例程序:变量c的重新赋值并不影响之前表示的引用(对象)。 /* * @(#)PassedReferenceWillNotChange.java 2014年5月7日 * * Copyright (c) 2014 Wu Owen. All rights reserved. ...2014-05-07 17:34:36 · 223 阅读 · 0 评论 -
result of File exists() method will change even the file object is the same
Here is code snipet that demos the virability of exists method of File. when the program is begin, there is no such file, but when you moved the file in this directory, the File object f can det...原创 2014-04-17 16:04:24 · 153 阅读 · 0 评论