javamail接收邮件的bean,可以正确的解析中文(转)(三)

//接上一文章

/**
* 从folder中提取所有的messages
*
* @throws MessagingException
*/
public void getAllMessages() throws MessagingException {
//从邮件文件夹获取邮件信息
Message[] messages = folder.getMessages();
setMessages(messages);
setRecordFailure();//初始化出错数组
// setMessageCount();
}

/**
* 获得messageNums数组指定的message
*
* @param messageNums
* @throws MessagingException
*/
public void getMessages(int[] messageNums) throws MessagingException {
Message[] messages = folder.getMessages(messageNums);
setMessages(messages);
setRecordFailure();//初始化出错数组
// setMessageCount();
}

/**
* 获得start和end之间的message
*
* @param start
* @param end
* @throws MessagingException
*/
public void getMessages(int start, int end) throws MessagingException {
Message[] messages = folder.getMessages(start, end);
setMessages(messages);
setRecordFailure();//初始化出错数组
// setMessageCount();
}

/**
* 关闭连接
*/
public void closeConnection() {
try {
messages = null;
message = null;
if (folder.isOpen())
folder.close(true);
store.close();
System.out.println("close");
} catch (Exception e) {
System.out.println("关闭和邮件服务器之间连接时出错!");
e.printStackTrace();
}
}

/**
* 获得当前邮件的基本方法 Pop3Bean内部应该调用这个方法 以便在调用函数中加入重试机制
*
* @throws MessagingException
* @throws MessagingException
*
*/
public void getMail() throws Throwable {//抛出异常,用以重掷
try {
saveMessageAs(message);
parseMessage(message);
} catch (IOException e) {
// TODO Auto-generated catch block
System.err.println("保存邮件出错,检查保存路径");
throw new IOException("保存邮件出错,检查保存路径");
} catch (MessagingException e) {
// TODO Auto-generated catch block
System.err.println("邮件转换出错");
throw new MessagingException("邮件转换出错");
} catch (Exception e) {
System.err.println("未知错误");
otherError = true;
e.printStackTrace();
throw new Exception("未知错误");
}
}

/**
* 获得指定的邮件
*
* @param index
*/
public void getMail(int index) {
mailDownErrorCounter = 0; //邮件下载出错计数器置零
try {//获取邮件下载之前的错误
setMessage(messages[index]);//设置当前message
System.out.println("正在获取第" + index + "封邮件. . .");
getMail();//获取当前message
System.out.println("成功获取第" + index + "封邮件");
} catch (Throwable e) {//获得重掷异常
recordFailure[index] = true;
mailDownErrorCounter++;
System.err.println("下载第" + index + "封邮件时出错");
retry();
}
}

/**
* 获取messages中的所有邮件
*/
public void getAllMail() {
int mailArrayLength; //将要下载的邮件的数量。若是重试时,则为还未下载的邮件数量

mailArrayLength = getMessageCount();

System.out.println("一共有邮件" + mailArrayLength + "封");

mailDownErrorCounter = 0; //邮件下载出错计数器置零
mailCounter = 0;
for (int index = 0; index < mailArrayLength; index++) {
try {
setMessage(messages[index]);//设置当前message
System.out.println("正在获取第" + index + "封邮件. . .");
getMail();//获取当前message
System.out.println("成功获取第" + index + "封邮件");
mailCounter++;
} catch (Throwable e) {
otherError = false;
recordFailure[index] = true;
mailDownErrorCounter++;
System.err.println("下载第" + index + "封邮件时出错");
}
}
System.out.println("成功下载" + mailCounter + "封邮件");
mailCounter = 0;
if (mailDownErrorCounter != 0)
retry();
}

/**
* 保存邮件源文件
*/

public void saveMessageAs(Message message) {
String oriFileName;
String fileExtend;

try {
oriFileName = getInfoBetweenBrackets(getMessageId(message)
.toString());
//设置文件后缀名。若是附件则设法取得其文件后缀名作为将要保存文件的后缀名,若是正文部分则用.htm做后缀名
String emlName = oriFileName;
String fileNameWidthExtension = getEmlPath() + oriFileName
+ getExtension();
File storeFile = new File(fileNameWidthExtension);
for (int i = 0; storeFile.exists(); i++) {
emlName = oriFileName + i;
fileNameWidthExtension = getEmlPath() + emlName
+ getExtension();
storeFile = new File(fileNameWidthExtension);
}
setEmlName(emlName);
System.out.println("storefile's path: " + fileNameWidthExtension);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
message.writeTo(baos);
StringReader in = new StringReader(baos.toString());
saveFile(fileNameWidthExtension, in);
} catch (MessagingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

/*
* 解析邮件
*/
public void parseMessage(Message message) throws IOException,
MessagingException {
Object content = message.getContent();
if (content instanceof Multipart) {
handleMultipart((Multipart) content);
} else {
handlePart(message);
}
}

/*
* 解析Multipart
*/
public void handleMultipart(Multipart multipart) throws MessagingException,
IOException {
for (int i = 0, n = multipart.getCount(); i < n; i++) {
handlePart(multipart.getBodyPart(i));
}
}

/*
* 解析指定part,从中提取文件
*/
public void handlePart(Part part) throws MessagingException, IOException {
String disposition = part.getDisposition(); // Find attachment
String contentType = part.getContentType();
String str;
InputStreamReader sbis = new InputStreamReader(part.getInputStream());
if (disposition == null) { // When just body
System.out.println("Null: " + contentType);
// Check if plain
if ((contentType.length() >= 9)
&& (contentType.toLowerCase().substring(0, 9)
.equals("text/plai"))) {

System.out.println(getAttachPath() + getEmlName() + ".txt");
saveFile(getAttachPath() + getEmlName() + ".txt", sbis);
} else if ((contentType.length() >= 8) // Check if html
&& (contentType.toLowerCase().substring(0, 8)
.equals("text/htm"))) {
saveFile(getAttachPath() + getEmlName() + ".html", sbis);
} else if ((contentType.length() >= 9) // Check if html
&& (contentType.toLowerCase().substring(0, 9)
.equals("image/gif"))) {
saveFile(getAttachPath() + getEmlName() + ".gif", sbis);
} else if ((contentType.length() >= 10)
&& contentType.toLowerCase().substring(0, 10).equals(
"multipart/")) { // Check if multipart
System.out.println("multipart body: " + contentType);
Multipart mp = (Multipart) (part.getContent());
handleMultipart(mp);
} else { // Unknown type
System.out.println("Other body: " + contentType);
saveFile(getAttachPath() + getEmlName() + ".txt", sbis);
}
} else if (disposition.equalsIgnoreCase(Part.ATTACHMENT)) {
System.out.println("Attachment: " + part.getFileName() + " : "
+ contentType);
//outToFile.println("Attachment: " + part.getFileName() + " : "
// + contentType);
saveFile(getAttachPath() + part.getFileName(), sbis);
} else if (disposition.equalsIgnoreCase(Part.INLINE)) {
System.out.println("Inline: " + part.getFileName() + " : "
+ contentType);
//outToFile.println("Inline: " + part.getFileName() + " : "
// + contentType);
saveFile(getAttachPath() + part.getFileName(), sbis);
} else { // Should never happen
System.out.println("Other: " + disposition);
// outToFile.println("Other: " + disposition);
}
}

public void saveFile(String fileName, Reader input) throws IOException {
if (fileName == null) {
fileName = File.createTempFile(getAttachPath() + "xx", ".out")
.getName();
}
// Do no overwrite existing file
File file = new File(fileName);
int lastDot = fileName.lastIndexOf(".");
String extension = fileName.substring(lastDot);
String fullFileName = fileName;
fileName = fileName.substring(0, lastDot);
for (int i = 0; file.exists(); i++) {
file = new File(fileName + i + extension);
}
FileWriter fos = new FileWriter(file);
BufferedWriter bos = new BufferedWriter(fos);
BufferedReader bis = new BufferedReader(input);
int aByte;
while ((aByte = bis.read()) != -1) {
bos.write(aByte);
}
bos.flush();
bos.close();
bis.close();
}

public void readEmlFile(String fileName) throws MessagingException {
try {
//TODO readEmlFile
InputStream fis = new FileInputStream(fileName);
Object emlObj = (Object)fis;
Session mailSession = Session.getDefaultInstance(System.getProperties(), null);
MimeMessage msg = new MimeMessage(mailSession,fis);
message = msg;

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

private String getInfoBetweenBrackets(String str) throws Exception {
int i, j; //用于标识字符串中的"<"和">"的位置
if (str == null) {
str = "error";
return str;
}
i = str.lastIndexOf("<");
j = str.lastIndexOf(">");
if (i != -1 && j != -1)
str = str.substring(i + 1, j);
return str;
} //当有邮件无法下载时进行重试
private void retry() {
mailCounter = 0;
while (retryTimeCounter < totalRetryTimes && mailDownErrorCounter != 0) {
if (!store.isConnected() || !folder.isOpen()) {
System.err.println("与服务器连接断开,请重新连接");
closeConnection();
return;
}

System.out.println("第" + (retryTimeCounter + 1) + "次重试");

mailDownErrorCounter = 0; //邮件下载出错计数器置零

for (int index = 0; index < getMessageCount(); index++) {
if (recordFailure[index]) {
try {
setMessage(messages[index]);//设置当前message
System.out.println("正在获取第" + index + "封邮件. . .");
getMail();//获取当前message
System.out.println("成功获取第" + index + "封邮件");
mailCounter++;
recordFailure[index] = false;
} catch (Throwable e) {
otherError = false;
recordFailure[index] = true;
mailDownErrorCounter++;
System.err.println("重新下载第" + index + "封邮件时出错");
}
}
}
retryTimeCounter++;
}
System.out.println("成功下载" + mailCounter + "封邮件");
mailCounter = 0; //将邮件计数置零
mailDownErrorCounter = 0;//下载错误数量归零
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值