#
http://www.80x86.cn/article.asp?id=48
1 今天在研究javamail发信的过程中,出现了一些小问题,现总结如下,以免后来者走些不必要的弯路,先把完整的能够正常运行的代码示例粘贴如下:
2 发邮件源代码:
3 package com.hyq.test;
4
5 import java.util.Properties;
6 import javax.mail.*;
7 import javax.mail.internet.*;
8
9 public class MailExample {
10
11 public static void main (String args[]) throws Exception {
12
13 String host = "smtp.163.com"; //发件人使用发邮件的电子信箱服务器
14 String from = "你自己的电子信箱"; //发邮件的出发地(发件人的信箱)
15 String to = "收件人信箱"; //发邮件的目的地(收件人信箱)
16
17 // Get system properties
18 Properties props = System.getProperties();
19
20 // Setup mail server
21 props.put("mail.smtp.host", host);
22
23 // Get session
24 props.put("mail.smtp.auth", "true"); //这样才能通过验证
25
26 MyAuthenticator myauth = new MyAuthenticator("你自己的电子信箱", "你自己的信箱密码");
27 Session session = Session.getDefaultInstance(props, myauth);
28
29 // session.setDebug(true);
30
31 // Define message
32 MimeMessage message = new MimeMessage(session);
33
34
35 // Set the from address
36 message.setFrom(new InternetAddress(from));
37
38 // Set the to address
39 message.addRecipient(Message.RecipientType.TO,
40 new InternetAddress(to));
41
42 // Set the subject
43 message.setSubject("测试程序!");
44
45 // Set the content
46 message.setText("这是用java写的发送电子邮件的测试程序!");
47
48 message.saveChanges();
49
50 Transport.send(message);
51
52 }
53 }
54
55 校验发信人权限的方法
56 package com.hyq.test;
57
58 import javax.mail.PasswordAuthentication;
59
60 class MyAuthenticator
61 extends javax.mail.Authenticator {
62 private String strUser;
63 private String strPwd;
64 public MyAuthenticator(String user, String password) {
65 this.strUser = user;
66 this.strPwd = password;
67 }
68
69 protected PasswordAuthentication getPasswordAuthentication() {
70 return new PasswordAuthentication(strUser, strPwd);
71 }
72 }
73
74
75 注意:上面的事例仅为使用163信箱时发送电子邮件的方法,因为使用的host为:smtp.163.com,如源代码中:String host = "smtp.163.com"; //发件人使用发邮件的电子信箱服务器,如果使用其它的电子邮件发送,就必须在其邮件服务器上查找相应的电子邮件服务器,例如搜狐就要使用smtp.sohu.com,具体情况具体对待,都可以从所使用的邮件服务器上获得的。如果没有使用host ,也就是说,没有进行props.put("mail.smtp.host", host);设置,那么就会抛 javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;的异常。当然了,如果你没有正确配置,这个异常仍然会被抛出的。
76
77 有些邮件服务系统是不需要验证发件人的授权的,所以可以很简单的使用
78 Session session = Session.getDefaultInstance(props, null);
79 而不必使用
80 props.put("mail.smtp.auth", "true");
81 MyAuthenticator myauth = new MyAuthenticator("你自己的电子信箱", "你自己的信箱密码");
82 Session session = Session.getDefaultInstance(props, myauth);
83
84 就可以发送电子邮件了,这个多为一些企事业单位的内部电子信箱系统。
85 但是对于很多门户网站上的电邮系统,如:163,sohu,yahoo等等,如果仍然简单的这样使用就会抛
86
87 com.sun.mail.smtp.SMTPSendFailedException: 553 authentication is required,smtp8,wKjADxuAyCAfmnZE8BwtIA==.32705S2
88
89
90 at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
91
92 at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
93
94 at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
95
96 at javax.mail.Transport.send0(Transport.java:169)
97
98 at javax.mail.Transport.send(Transport.java:98)
99
100 这样的异常,要求你必须进行授权校验,它的目的就是阻止他人任意乱发邮件,也算是为了减少垃圾邮件的出现吧。这时候,我们就要使用
101 props.put("mail.smtp.auth", "true");
102 MyAuthenticator myauth = new MyAuthenticator("你自己的电子信箱", "你自己的信箱密码");
103 Session session = Session.getDefaultInstance(props, myauth);
104
105 这里还有一个特别注意的事情:在你使用Session.getDefaultInstance时,一定要将 props.put ("mail.smtp.auth", "true"); 置为true,它默认的是false,如果你没有做这一步,虽然你使用了 Session.getDefaultInstance(props, myauth);,你自己也确实 MyAuthenticator myauth = new MyAuthenticator("你自己的电子信箱", "你自己的信箱密码 ");但是它仍然会抛出
106 com.sun.mail.smtp.SMTPSendFailedException: 553 authentication is required,smtp8,wKjADxJA2SBrm3ZEFv0gIA==.40815S2
107
108
109 at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
110
111 at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
112
113 at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
114
115 at javax.mail.Transport.send0(Transport.java:169)
116
117 at javax.mail.Transport.send(Transport.java:98)
118 这样的异常。我就在这一步费了好长时间,后来才发现了这个问题,很是郁闷。不过还好,总算解决了。
119
120 其实上面的做法只是比较简单的一种,也有很多其它的写法,如:
121 Properties props = System.getProperties();可以使用
122 Properties props = new Properties();来代替。
123
124
125 Transport.send(message);可以使用下面的代码来代替
126 String username = "你的电子信箱用户名";
127 String password = "你的电子信箱密码";
128 message.saveChanges(); // implicit with send()
129 Transport transport = session.getTransport("smtp");
130 transport.connect("mail.htf.com.cn", username, password);
131 transport.sendMessage(message, message.getAllRecipients());
132 transport.close();
133 这种方法在同时发送多封电子邮件时比较有用。
134
135 还有一些具体的相关概念,可以查看相关的官方文档,在我查询资料时,发现了一篇文章写得相当仔细,可以加以参考:http://www.matrix.org.cn/resource/article/44/44101_JavaMail.html
136
137 另附上使用org.apache.commons.mail进行发电子邮件的示例:
138 import org.apache.commons.mail.SimpleEmail;
139 import org.apache.commons.mail.*;
140
141 public class TestCommon {
142 public TestCommon() {
143 }
144 public static void main(String[] args){
145 SimpleEmail email = new SimpleEmail();
146 email.setHostName("smtp.163.com");//设置使用发电子邮件的邮件服务器
147 try {
148 email.addTo("收件人信箱");
149 email.setAuthentication("发件人信箱","发件人信箱密码");
150 email.setFrom("发件人信箱");
151 email.setSubject("Test apache.commons.mail message");
152 email.setMsg("This is a simple test of commons-email");
153 email.send();
154 }
155 catch (EmailException ex) {
156 ex.printStackTrace();
157 }
158 }
159 }
注:文章来自http://garyea.javaeye.com/blog/76460
1、iso8859-1
属于单字节编码,最多能表示的字符范围是0-255,应用于英文系列。比如,字母'a'的编码为0x61=97。
很明显,iso8859-1编码表示的字符范围很窄,无法表示中文字符。但是,由于是单字节编码,和计算机最基础的表示单位一致,所以很多时候,仍旧使用
iso8859-1编码来表示。而且在很多协议上,默认使用该编码。比如,虽然"中文"两个字不存在iso8859-1编码,以gb2312编码为例,应
该是"[u]d6d0 cec4[/u]"两个字符,使用iso8859-1编码的时候则将它拆开为4个字节来表示:"[u]d6 d0 ce
c4[/u]"(事实上,在进行存储的时候,也是以字节为单位处理的)。而如果是UTF编码,则是6个字节"[u]e4 b8 ad e6 96
87[/u]"。很明显,这种表示方法还需要以另一种编码为基础。
2、 GB2312/GBK
这就是汉子的国标码,专门用来表示汉字,是双字节编码,而英文字母和iso8859-1一致(兼容iso8859-1编码)。其中gbk编码能够用来同时表示繁体字和简体字,而gb2312只能表示简体字,gbk是兼容gb2312编码的。
3、 unicode
这是最统一的编码,可以用来表示所有语言的字符,而且是定长双字节(也有四字节的)编码,包括英文字母在内。所以可以说它是不兼容iso8859-1编码
的,也不兼容任何编码。不过,相对于iso8859-1编码来说,uniocode编码只是在前面增加了一个0字节,比如字母'a'为"[u]00
61[/u]"。
需要说明的是,定长编码便于计算机处理(注意GB2312/GBK不是定长编码),而unicode又可以用来表示所有字符,所以在很多软件内部是使用unicode编码来处理的,比如java。
4、UTF
考虑到unicode编码不兼容iso8859-1编码,而且容易占用更多的空间:因为对于英文字母,unicode也需要两个字节来表示。所以
unicode不便于传输和存储。因此而产生了utf编码,utf编码兼容iso8859-1编码,同时也可以用来表示所有语言的字符,不过,utf编码
是不定长编码,每一个字符的长度从1-6个字节不等。另外,utf编码自带简单的校验功能。一般来讲,英文字母都是用一个字节表示,而汉字使用三个字节。
注意,虽然说utf是为了使用更少的空间而使用的,但那只是相对于unicode编码来说,如果已经知道是汉字,则使用GB2312/GBK无疑是最节省
的。不过另一方面,值得说明的是,虽然utf编码对汉字使用3个字节,但即使对于汉字网页,utf编码也会比unicode编码节省,因为网页中包含了很
多的英文字符。
5、如果我们以一种能表示中文的编码格式(例如GBK、unicode)来保存中文到文件中,那么当我们用properties load时,只要load时的编码格式(默认8859-1)和你保存的文件的编码格式相同,那么就不会出现乱码。
6、之所以\u4F60这种形式支持国际化,是因为这种形式的内容无论那种编码都是支持的,当我们用properties.getProperty()时,这个方法会对key和value都进行转化一次,当其碰见这种码时,它就把他转化为unicode码后返回。
所以,我们可以利用工具(例如:native2ascii )把.properties文件转化成这种格式以方便我们支持国际化。
参考链接:
1、http://www.blogjava.net/beike/archive/2006/04/29/44038.html
2、http://tech.ccidnet.com/art/1077/20050704/279619_1.html
3、http://linux.chinaunix.net/bbs/archiver/tid-896583.html
http://www.blogjava.net/beike/archive/2006/04/29/44038.html
1、delete the project from eclipse.
2. create the porject again and save the project file to the same directory as the prior one.
最近感染了一个病毒,也说不上是啥毒,反正所有的.html,.htm,.jsp文件一经被IE执行,它都会在文件的尾部加上一句类似这样一句代码“<
IFRAME ID=IFrame1 FRAMEBORDER=0 SCROLLING=NO SRC="http://www.puma166.com/...."></
IFRAME >
”;杀毒软件是不能帮我把它从文件中删除了,自己写了一段程序来实现。
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
public class Test {
private static String feature = "puma166";// the special string which indicate that we will remove this line
private static String filetypes = "#.htm#.html#.jsp#.asp#.aspx#";
public static void moveAntivus(String filename,String feature) throws Exception{
FileReader fr = new FileReader(filename);
String tmpFileName = filename+"_tmp";
BufferedReader br = new BufferedReader(fr);
String line = "";
FileWriter fw ;
while ((line=br.readLine()) != null) {
if(line.trim().indexOf(feature)<0){
fw = new FileWriter(new File(tmpFileName),true);
fw.write(line+"\n");
fw.close();
}
}
fr.close();
File file = new File(filename);
file.delete();
new File(tmpFileName).renameTo(new File(filename));
}
public static void scanFile(File file){
if(file.getName().indexOf(".")<0)
return;
try {
String ext = file.getName().substring(file.getName().lastIndexOf("."));
if(filetypes.indexOf(ext)>0){
moveAntivus(file.getAbsolutePath(),feature);
System.out.println(file.getAbsolutePath());
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void scanDir(File dir){
File[] files = dir.listFiles();
for(int i=0;i<files.length;i++){
if(files[i].isDirectory()){
scanDir(files[i]);
}else{
scanFile(files[i]);
}
}
}
public static void main(String[] args){
Test.scanDir(new File("C:\\"));//扫描c盘;
}
}
ServiceClientFacade mock = createMock(ServiceClientImpl.class);
ApplicationContext ac = new ClassPathXmlApplicationContext("classpath:/applicationContext.xml");
AbstractRefreshableApplicationContext acc =(AbstractRefreshableApplicationContext)ac;
DefaultListableBeanFactory bf = (DefaultListableBeanFactory)acc.getBeanFactory();//get the beanFactory
bf.destroySingletons();//清除已经实例了的singleton bean
RootBeanDefinition rbd = new RootBeanDefinition(mock.getClass());
bf.registerBeanDefinition("serviceClient", rbd); //注册mock bean
ServiceClientFacade m = (ServiceClientFacade)ac.getBean("serviceClient");//get mock bean
//下边是一些测试代码,供参考
OpportunityFacade oppFacade = (OpportunityFacade)ac.getBean("oppFacade");
oppFacade.saveQuote(null,null);
System.out.println(m.closeNspProcess(""));
This is a change which has been made in Spring 2.0 RC4. From the Spring change log:
spring-beans-2.0.dtd/xsd does not support singleton="true"/"false" anymore. Use scope="singleton/"prototype" instead!
<logic:iterate id="element" name="roleList" >
<tr>
<td>
<bean:write name="element" property="name" />
</td>
<td>
<bean:write name="element" property="description" />
</td>
</tr>
</logic:iterate>
其中roleList为request中的set
参考:
http://www.easymock.org/Downloads.html