最新下载
热门教程
- 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();
相关文章
- 地狱即我们探索道具在哪里 获取方式及使用方法指南 09-19
- 地狱即我们探索道具怎么使用 获取方式及使用方法图鉴 09-19
- 地狱即我们探索物品有哪些 获取方式及使用方法一览 09-19
- 鸣潮新角色仇远怎么样-鸣潮仇远角色介绍 09-19
- 地狱即我们调查道具在哪里获取 获取方式及使用方法一览 09-19
- 无主之地4赶紧删掉成就怎么达成 赶紧删掉成就解锁攻略 09-19