呵呵,看来这里是没人会了,你放到http://forum.java.sun.com试试

解决方案 »

  1.   

    5555555555!
    总算有人理我了.
    ghw兄,再过一天,没人应答,这五十分就是你的了.
      

  2.   

    或者。。参考
        public static void dumpPart(Part p) throws Exception {
    if (p instanceof Message)
        dumpEnvelope((Message)p); /** Dump input stream ..  InputStream is = p.getInputStream();
    // If "is" is not already buffered, wrap a BufferedInputStream
    // around it.
    if (!(is instanceof BufferedInputStream))
        is = new BufferedInputStream(is);
    int c;
    while ((c = is.read()) != -1)
        System.out.write(c); **/ pr("CONTENT-TYPE: " + p.getContentType()); /*
     * Using isMimeType to determine the content type avoids
     * fetching the actual content data until we need it.
     */
    if (p.isMimeType("text/plain")) {
        pr("This is plain text");
        pr("---------------------------");
        if (!showStructure)
    System.out.println((String)p.getContent());
    } else if (p.isMimeType("multipart/*")) {
        pr("This is a Multipart");
        pr("---------------------------");
        Multipart mp = (Multipart)p.getContent();
        level++;
        int count = mp.getCount();
        for (int i = 0; i < count; i++)
    dumpPart(mp.getBodyPart(i));
        level--;
    } else if (p.isMimeType("message/rfc822")) {
        pr("This is a Nested Message");
        pr("---------------------------");
        level++;
        dumpPart((Part)p.getContent());
        level--;
    } else if (!showStructure) {
        /*
         * If we actually want to see the data, and it's not a
         * MIME type we know, fetch it and check its Java type.
         */
        Object o = p.getContent();
        if (o instanceof String) {
    pr("This is a string");
    pr("---------------------------");
    System.out.println((String)o);
        } else if (o instanceof InputStream) {
    pr("This is just an input stream");
    pr("---------------------------");
    InputStream is = (InputStream)o;
    int c;
    while ((c = is.read()) != -1)
        System.out.write(c);
        } else {
    pr("This is an unknown type");
    pr("---------------------------");
    pr(o.toString());
        }
    } else {
        pr("This is an unknown type");
        pr("---------------------------");
    }
        }