最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
javamail通过pop3收信,附件下载,我的办法(代码!)
时间:2022-07-02 18:12:18 编辑:袖梨 来源:一聚教程网
从附件名连接到这个servlet!
DownloadServlet.java
package MailServlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import javax.activation.*;
import javax.mail.*;
import javax.mail.internet.*;
/**
*
*
*
*
* @author simon
* @version 1.0
*/
public class DownloadServlet extends HttpServlet
{
public void service(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
HttpSession session = request.getSession();
String contentType = request.getParameter("contenttype"); //附件的ContentType
int count = Integer.parseInt(request.getParameter("count")); //第几个BodyPart
Object body = session.getAttribute("body"); //邮件的MimeMultipart
if(body != null)
{
System.out.println("download Start!");
try
{
MimeMultipart mp = (MimeMultipart)body;
int i = mp.getCount();
DownloadServlet.java
package MailServlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import javax.activation.*;
import javax.mail.*;
import javax.mail.internet.*;
/**
*
Title:
*
Description:
*
Copyright: Copyright (c) 2002
*
Company: Socix
* @author simon
* @version 1.0
*/
public class DownloadServlet extends HttpServlet
{
public void service(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
HttpSession session = request.getSession();
String contentType = request.getParameter("contenttype"); //附件的ContentType
int count = Integer.parseInt(request.getParameter("count")); //第几个BodyPart
Object body = session.getAttribute("body"); //邮件的MimeMultipart
if(body != null)
{
System.out.println("download Start!");
try
{
MimeMultipart mp = (MimeMultipart)body;
int i = mp.getCount();
相关文章
- 星露谷物语闹鬼迷宫怎么走-闹鬼迷宫通关路线走法 11-07
- 神话时代重述版多人联机连接丢失解决方法 11-07
- 神话时代重述版豪华版内容介绍说明 11-07
- 神话时代重述版控制台游戏秘籍汇总 11-07
- 神话时代重述版亚特兰蒂斯升级配置攻略 11-07
- 高达破坏者4预购特典领取方法分享 11-07