因胸联盟 发表于 2015-1-18 11:25:29

JAVA编程:修正后能够发送附件、抄送、密送的java...

先说优点,首先和C,C++这些语言比起来,java很简单,去掉指针的java,非常好理解,自动垃圾回收机制也很好,自从JDK1.5推出以后,性能上又有了很大提高。/*
*Author:tyfun
*DateTime:2003.01.09
*Package:com.westarsoft.function
*/

packagecom.westarsoft.function;

importjava.util.*;
importjava.io.*;
importjavax.mail.*;
importjavax.mail.internet.*;
importjavax.activation.*;

publicclassSendMail{
privateStringSMTPServer=newString();
privateStringfrom=newString();
privateStringsubject=newString();
privateStringcontent=newString();
privateStringuser=newString();
privateStringpassword=newString();
privateStringfileAttachment=newString();
publicStringgetSMTPServer(){
returnSMTPServer;
}
publicvoidsetSMTPServer(StringSMTPServer){
this.SMTPServer=SMTPServer;
}
publicStringgetFrom(){
returnfrom;
}
publicvoidsetFrom(Stringfrom){
this.from=from;
}
publicStringgetSubject(){
returnsubject;
}
publicvoidsetSubject(Stringsubject){
this.subject=subject;
}
publicStringgetContent(){
returncontent;
}
publicvoidsetContent(Stringcontent){
this.content=content;
}
publicStringgetUser(){
returnuser;
}
publicvoidsetUser(Stringuser){
this.user=user;
}
publicStringgetPassword(){
returnpassword;
}
publicvoidsetPassword(Stringpassword){
this.password=password;
}
publicStringgetFileAttachment(){
returnfileAttachment;
}
publicvoidsetFileAttachment(StringfileAttachment){
this.fileAttachment=fileAttachment;
}

publicvoidsendMailTo(Stringto,Stringcc,Stringbcc){
try{
Propertiesprops=newProperties();
SessionsendMailSession;
Storestore;
Transporttransport;

sendMailSession=Session.getInstance(props,null);
props.put("mail.smtp.host",SMTPServer);
MimeMessagenewMessage=newMimeMessage(sendMailSession);
newMessage.setFrom(newInternetAddress(from));
newMessage.setSubject(subject);
newMessage.setSentDate(newDate());
/*
StringTokenizertokenTO=newStringTokenizer(to,",");
InternetAddress[]addrArrTO=newInternetAddress;
inti=0;
while(tokenTO.hasMoreTokens()){
addrArrTO=newInternetAddress(tokenTO.nextToken().toString());
i++;
}
*/
transport=sendMailSession.getTransport("smtp");
transport.connect(SMTPServer,user,password);
//newMessage.setRecipients(Message.RecipientType.TO,addrArrTO);
newMessage.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to));
newMessage.setRecipients(Message.RecipientType.CC,InternetAddress.parse(cc));
newMessage.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(bcc));

MimeBodyPartmessageBodyPart=newMimeBodyPart();
messageBodyPart.setText(content);
Multipartmultipart=newMimeMultipart();
multipart.addBodyPart(messageBodyPart);
messageBodyPart=newMimeBodyPart();
DataSourcesource=newFileDataSource(fileAttachment);
messageBodyPart.setDataHandler(newDataHandler(source));
messageBodyPart.setFileName(fileAttachment);
multipart.addBodyPart(messageBodyPart);
newMessage.setContent(multipart);

transport.send(newMessage);
}
catch(Exceptione){
System.out.println(e);
}
}
}





<%
if(request.getMethod().equals("POST")){
SendMailmail=newSendMail();
mail.setSMTPServer("200.1.1.157");
mail.setUser("lint");
mail.setPassword("30320");
mail.setFrom(request.getParameter("from"));
mail.setSubject(request.getParameter("subject"));
mail.setContent(request.getParameter("content"));
mail.setFileAttachment(request.getParameter("filename"));
mail.sendMailTo(request.getParameter("to"),request.getParameter("cc"),request.getParameter("bcc"));
}
%>
你精通任何一门语言就最强大。现在来看,java的市场比C#大,C#容易入手,比较简单,java比较难

谁可相欹 发表于 2015-1-19 05:53:20

是一种使用者不需花费很多时间学习的语言

再现理想 发表于 2015-1-24 07:41:03

http://www.jdon.com/去下载,或到同济技术论坛的服务器ftp://nro.shtdu.edu.cn去下,安装上有什么问题,可以到论坛上去提问。

admin 发表于 2015-1-28 09:28:05

是一种将安全性(Security)列为第一优先考虑的语言

冷月葬花魂 发表于 2015-2-5 14:00:12

http://www.jdon.com/去下载,或到同济技术论坛的服务器ftp://nro.shtdu.edu.cn去下,安装上有什么问题,可以到论坛上去提问。

乐观 发表于 2015-2-6 07:34:53

如果你学过HTML,那么事情要好办的多,如果没有,那你快去补一补HTML基础吧。其实JSP中的Java语法也不多,它更象一个脚本语言,有点象ASP。

小魔女 发表于 2015-2-8 21:13:34

设计模式是高级程序员真正掌握面向对象核心思想的必修课。设计模式并不是一种具体"技术",它讲述的是思想,它不仅仅展示了接口或抽象类在实际案例中的灵活应用和智慧

精灵巫婆 发表于 2015-2-26 10:52:47

另外编写和运行Java程序需要JDK(包括JRE),在sun的官方网站上有下载,thinking in java第三版用的JDK版本是1.4,现在流行的版本1.5(sun称作J2SE 5.0,汗),不过听说Bruce的TIJ第四版国外已经出来了,是专门为J2SE 5.0而写的。

飘灵儿 发表于 2015-2-27 01:57:00

如果要向java web方向发展也要吧看看《Java web从入门到精通》学完再到《Struts2.0入门到精通》这样你差不多就把代码给学完了。有兴趣可以看一些设计模块和框架的包等等。

仓酷云 发表于 2015-3-5 06:13:30

Pet Store.(宠物店)是SUN公司为了演示其J2EE编程规范而推出的开放源码的程序,应该很具有权威性,想学J2EE和EJB的朋友不要 错过了。

莫相离 发表于 2015-3-7 06:51:27

象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。

再见西城 发表于 2015-3-8 15:33:13

Pet Store.(宠物店)是SUN公司为了演示其J2EE编程规范而推出的开放源码的程序,应该很具有权威性,想学J2EE和EJB的朋友不要 错过了。

愤怒的大鸟 发表于 2015-3-10 02:05:35

Java 不同于一般的编译执行计算机语言和解释执行计算机语言。它首先将源代码编译成二进制字节码(bytecode),然后依赖各种不同平台上的虚拟机来解释执行字节码。从而实现了“一次编译、到处执行”的跨平台特性。

活着的死人 发表于 2015-3-11 13:57:22

是一种由美国SUN计算机公司(Sun Microsystems, Inc.)所研究而成的语言

只想知道 发表于 2015-3-18 16:32:25

如果要向java web方向发展也要吧看看《Java web从入门到精通》学完再到《Struts2.0入门到精通》这样你差不多就把代码给学完了。有兴趣可以看一些设计模块和框架的包等等。

爱飞 发表于 2015-3-26 03:32:52

《JAVA语言程序设计》或《JAVA从入门到精通》这两本书开始学,等你编程有感觉的时候也可以回看一下。《JAVA读书笔记》这本书,因为讲的代码很多,也很容易看懂,涉及到面也到位。是你学习技术巩固的好书,学完后就看看《JAVA编程思想》这本书,找找一个自己写的代码跟书上的代码有什么不一样。
页: [1]
查看完整版本: JAVA编程:修正后能够发送附件、抄送、密送的java...