如何破解游戏机、游戏机秘籍

如何破解游戏机、游戏机秘籍,第1张

提 钱 快,送 体 验 金 啊
来 钱 速 度 快
没 有 遇 到 问 题
kptbaidu/>

将邮件写入到文件的代码

msg saveChanges();File f = new File( d:/test eml );msg writeTo(new FileOutputStream(f));

调用outlook的代码

Process p = Runtime getRuntime() exec( cmd /C start msimn exe /eml:d:/test eml );

完整的代码如下

package code jdk mail;

import java io File;import java io FileNotFoundException;import java io FileOutputStream;import java io IOException;import java util Date;import java util Enumeration;import java util HashMap;import java util Properties;import java util Vector;

import javax activation DataHandler;import javax activation FileDataSource;import javax mail Address;import javax mail AuthenticationFailedException;import javax mail Message;import javax mail MessagingException;import javax mail Multipart;import javax mail Session;import javax mail Transport;import javax mail internet InternetAddress;import javax mail internet MimeBodyPart;import javax mail internet MimeMessage;import javax mail internet MimeMultipart;import javax mail internet MimeUtility;

public class EmailWriteToFile {// 定义发件人 收件人 SMTP服务器 用户名 密码 主题 内容等private String displayName;

private String to;

private String from;

private String tpServer;

private String username;

private String password;

private String subject;

private String content;

private boolean ifAuth; // 服务器是否要身份认证

private String filename = ;

private Vector file = new Vector(); // 用于保存发送附件的文件名的集合

private String contentType = text/ ;

private String charset = utf ;

public void addFile(String filename) {file add(filename);}

public String getContentType() {return contentType;}

public void setContentType(String contentType) {ntentType = contentType;}

public String getCharset() {return charset;}

public void setCharset(String charset) {this charset = charset;}

/ 设置SMTP服务器地址/public void setSmtpServer(String tpServer) {this tpServer = tpServer;}

/ 设置发件人的地址/public void setFrom(String from) {this from = from;}

/ 设置显示的名称/public void setDisplayName(String displayName) {this displayName = displayName;}

/ 设置服务器是否需要身份认证/public void setIfAuth(boolean ifAuth) {this ifAuth = ifAuth;}

/ 设置E mail用户名/public void setUserName(String username) {this username = username;}

/ 设置E mail密码/public void setPassword(String password) {this password = password;}

/ 设置接收者/public void setTo(String to) {this to = to;}

/ 设置主题/public void setSubject(String subject) {this subject = subject;}

/ 设置主体内容/public void setContent(String content) {ntent = content;}

public EmailWriteToFile() {

}

private int port = ;

public int getPort() {return port;}

public void setPort(int port) {this port = port;}

/ 发送邮件 @throws IOException @throws FileNotFoundException/public boolean send() throws FileNotFoundException IOException {HashMap<String String> map = new HashMap<String String>();map put( state success );String message = 邮件发送成功! ;Session session = null;Properties props = System getProperties();props put( mail tp host tpServer);props put( mail tp port port);try {

props put( mail tp auth false );session = Session getDefaultInstance(props null);

session setDebug(false);Transport trans = null;Message msg = new MimeMessage(session);try {Address from_address = new InternetAddress(from displayName);msg setFrom(from_address);} catch (java io UnsupportedEncodingException e) {e printStackTrace();}InternetAddress[] address = { new InternetAddress(to) };msg setRecipients(Message RecipientType TO address);msg setSubject(subject);Multipart mp = new MimeMultipart();MimeBodyPart mbp = new MimeBodyPart();mbp setContent(content toString() getContentType() + ; charset= + getCharset());mp addBodyPart(mbp);if (!file isEmpty()) {// 有附件Enumeration efile = file elements();while (efile hasMoreElements()) {mbp = new MimeBodyPart();filename = efile nextElement() toString(); // 选择出每一个附件名FileDataSource fds = new FileDataSource(filename); // 得到数据源mbp setDataHandler(new DataHandler(fds)); // 得到附件本身并至入BodyPartmbp setFileName(MimeUtility encodeText(fds getName() getCharset() B )); // 得到文件名同样至入BodyPartmp addBodyPart(mbp);}file removeAllElements();}msg setContent(mp); // Multipart加入到信件msg setSentDate(new Date()); // 设置信件头的发送日期// 发送信件msg saveChanges();File f = new File( d:/test eml );msg writeTo(new FileOutputStream(f));

} catch (AuthenticationFailedException e) {map put( state failed );message = 邮件发送失败!错误原因 + 身份验证错误! ;e printStackTrace();return false;} catch (MessagingException e) {message = 邮件发送失败!错误原因 + e getMessage();map put( state failed );e printStackTrace();Exception ex = null;if ((ex = e getNextException()) != null) {System out println(ex toString());ex printStackTrace();}return false;}// System out println( 提示信息: +message);map put( message message);return true;}

public static void main(String[] args) throws FileNotFoundException IOException InterruptedException {EmailWriteToFile o = new EmailWriteToFile();o setSmtpServer( localhost );o setFrom( );o setDisplayName( TOM );o setTo( );o setSubject( Test Subject );o setContent( Test Content );o setCharset( GBK );o addFile( e:/读我 txt );o send();Process p = Runtime getRuntime() exec( cmd /C start msimn exe /eml:d:/test eml );

lishixinzhi/Article/program/Java/hx/201311/25757

Skype是一款即时通讯软件,具备IM所需的功能,比如视频聊天、多人语音会议、多人聊天、传送文件、文字聊天等功能。它可以高清晰与其他用户语音对话,也可以拨打国内国际电话,无论固定电话、手机、小灵通均可直接拨打,并且可以实现呼叫转移、短信发送等功能。

扩展资料

Skype这款通讯软件,几乎包含了所有IM软件所需要的功能,现在这款软件,又增加了一项新功能:屏幕共享。不久之后,安装有该软件的手机将会展现更大的作用,现在这个功能已经在Android和iOS设备上开始测试了。

这就使得直接与其他Skype用户共享手机或平板电脑的显示成为可能,不过由于现在是测试阶段,并没有开放给所有人使用。用户可以通过点击Skype上的“”菜单按钮,选择“屏幕共享”来访问测试版的这项新功能。不过在此之前,你需要加入Skype Insider测试计划。

参考资料来源:百度百科—skype


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/13439710.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-08-06
下一篇 2023-08-06

发表评论

登录后才能评论

评论列表(0条)

保存