仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 554|回复: 15
打印 上一主题 下一主题

[学习教程] JAVA编程:修正后能够发送附件、抄送、密送的java...

[复制链接]
因胸联盟 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-18 11:25:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
先说优点,首先和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[tokenTO.countTokens()];
inti=0;
while(tokenTO.hasMoreTokens()){
addrArrTO[i]=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 | 只看该作者
[url]http://www.jdon.com/[/url]去下载,或到同济技术论坛的服务器[url]ftp://nro.shtdu.edu.cn[/url]去下,安装上有什么问题,可以到论坛上去提问。
admin 该用户已被删除
地板
发表于 2015-1-28 09:28:05 | 只看该作者
是一种将安全性(Security)列为第一优先考虑的语言
冷月葬花魂 该用户已被删除
5#
发表于 2015-2-5 14:00:12 | 只看该作者
[url]http://www.jdon.com/[/url]去下载,或到同济技术论坛的服务器[url]ftp://nro.shtdu.edu.cn[/url]去下,安装上有什么问题,可以到论坛上去提问。
乐观 该用户已被删除
6#
发表于 2015-2-6 07:34:53 | 只看该作者
如果你学过HTML,那么事情要好办的多,如果没有,那你快去补一补HTML基础吧。其实JSP中的Java语法也不多,它更象一个脚本语言,有点象ASP。
小魔女 该用户已被删除
7#
发表于 2015-2-8 21:13:34 | 只看该作者
设计模式是高级程序员真正掌握面向对象核心思想的必修课。设计模式并不是一种具体"技术",它讲述的是思想,它不仅仅展示了接口或抽象类在实际案例中的灵活应用和智慧
精灵巫婆 该用户已被删除
8#
发表于 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而写的。
飘灵儿 该用户已被删除
9#
发表于 2015-2-27 01:57:00 | 只看该作者
如果要向java web方向发展也要吧看看《Java web从入门到精通》学完再到《Struts2.0入门到精通》这样你差不多就把代码给学完了。有兴趣可以看一些设计模块和框架的包等等。
10#
发表于 2015-3-5 06:13:30 | 只看该作者
Pet Store.(宠物店)是SUN公司为了演示其J2EE编程规范而推出的开放源码的程序,应该很具有权威性,想学J2EE和EJB的朋友不要 错过了。
莫相离 该用户已被删除
11#
发表于 2015-3-7 06:51:27 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
再见西城 该用户已被删除
12#
发表于 2015-3-8 15:33:13 | 只看该作者
Pet Store.(宠物店)是SUN公司为了演示其J2EE编程规范而推出的开放源码的程序,应该很具有权威性,想学J2EE和EJB的朋友不要 错过了。
愤怒的大鸟 该用户已被删除
13#
发表于 2015-3-10 02:05:35 | 只看该作者
Java 不同于一般的编译执行计算机语言和解释执行计算机语言。它首先将源代码编译成二进制字节码(bytecode),然后依赖各种不同平台上的虚拟机来解释执行字节码。从而实现了“一次编译、到处执行”的跨平台特性。
活着的死人 该用户已被删除
14#
发表于 2015-3-11 13:57:22 | 只看该作者
是一种由美国SUN计算机公司(Sun Microsystems, Inc.)所研究而成的语言
只想知道 该用户已被删除
15#
发表于 2015-3-18 16:32:25 | 只看该作者
如果要向java web方向发展也要吧看看《Java web从入门到精通》学完再到《Struts2.0入门到精通》这样你差不多就把代码给学完了。有兴趣可以看一些设计模块和框架的包等等。
爱飞 该用户已被删除
16#
发表于 2015-3-26 03:32:52 | 只看该作者
《JAVA语言程序设计》或《JAVA从入门到精通》这两本书开始学,等你编程有感觉的时候也可以回看一下。《JAVA读书笔记》这本书,因为讲的代码很多,也很容易看懂,涉及到面也到位。是你学习技术巩固的好书,学完后就看看《JAVA编程思想》这本书,找找一个自己写的代码跟书上的代码有什么不一样。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-15 11:56

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表