Java Code Examples for com.sun.xml.internal.messaging.saaj.util.ByteOutputStream#writeTo()

The following examples show how to use com.sun.xml.internal.messaging.saaj.util.ByteOutputStream#writeTo() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BMMimeMultipart.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 2
Source File: BMMimeMultipart.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 3
Source File: BMMimeMultipart.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 4
Source File: BMMimeMultipart.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 5
Source File: BMMimeMultipart.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 6
Source File: BMMimeMultipart.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}
 
Example 7
Source File: BMMimeMultipart.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void writeTo(OutputStream os)
        throws IOException, MessagingException {

    // inputStream was not null
    if (in != null) {
        contentType.setParameter("boundary", this.boundary);
    }

    String bnd = "--" + contentType.getParameter("boundary");
    for (int i = 0; i < parts.size(); i++) {
        OutputUtil.writeln(bnd, os); // put out boundary
        ((MimeBodyPart)parts.get(i)).writeTo(os);
        OutputUtil.writeln(os); // put out empty line
    }

    if (in != null) {
        OutputUtil.writeln(bnd, os); // put out boundary
        if ((os instanceof ByteOutputStream) && lazyAttachments) {
            ((ByteOutputStream)os).write(in);
        } else {
            ByteOutputStream baos = new ByteOutputStream(in.available());
            baos.write(in);
            baos.writeTo(os);
            // reset the inputstream so that we can support a
            //getAttachment later
            in = baos.newInputStream();
        }

        // this will endup writing the end boundary
    } else {
    // put out last boundary
        OutputUtil.writeAsAscii(bnd, os);
        OutputUtil.writeAsAscii("--", os);
    }
}