javax.mail.Multipart.writeTo()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(6.2k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中javax.mail.Multipart.writeTo()方法的一些代码示例,展示了Multipart.writeTo()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Multipart.writeTo()方法的具体详情如下:
包路径:javax.mail.Multipart
类名称:Multipart
方法名:writeTo

Multipart.writeTo介绍

[英]Output an appropriately encoded bytestream to the given OutputStream. The implementation subclass decides the appropriate encoding algorithm to be used. The bytestream is typically used for sending.
[中]将经过适当编码的ByTestStream输出到给定的OutputStream。实现子类决定要使用的适当编码算法。字节流通常用于发送。

代码示例

代码示例来源:origin: com.sun.mail/javax.mail

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: camunda/camunda-bpm-platform

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. public void writeTo(Object obj, String mimeType, OutputStream os)
  5. throws IOException {
  6. if (obj instanceof Multipart) {
  7. try {
  8. ((Multipart)obj).writeTo(os);
  9. } catch (MessagingException e) {
  10. IOException ioex =
  11. new IOException("Exception writing Multipart");
  12. ioex.initCause(e);
  13. throw ioex;
  14. }
  15. }
  16. }
  17. }

代码示例来源:origin: spring-projects/spring-integration

  1. @Override
  2. protected AbstractIntegrationMessageBuilder<String> doTransform(javax.mail.Message mailMessage)
  3. throws Exception { // NOSONAR
  4. Object content = mailMessage.getContent();
  5. if (content instanceof String) {
  6. return this.getMessageBuilderFactory().withPayload((String) content);
  7. }
  8. if (content instanceof Multipart) {
  9. ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  10. ((Multipart) content).writeTo(outputStream);
  11. return this.getMessageBuilderFactory().withPayload(
  12. new String(outputStream.toByteArray(), this.charset));
  13. }
  14. else if (content instanceof Part) {
  15. ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  16. ((Part) content).writeTo(outputStream);
  17. return this.getMessageBuilderFactory().withPayload(
  18. new String(outputStream.toByteArray(), this.charset));
  19. }
  20. throw new IllegalArgumentException("failed to transform contentType ["
  21. + mailMessage.getContentType() + "] to String.");
  22. }

代码示例来源:origin: spring-projects/spring-integration

  1. ((Multipart) content).writeTo(baos);
  2. content = byteArrayToContent(headers, baos);

代码示例来源:origin: com.sun.mail/mailapi

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: com.sun.mail/jakarta.mail

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: org.glassfish.metro/webservices-extra

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: com.sun.mail/android-mail

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: jboss/jboss-javaee-specs

  1. /**
  2. * Write the object to the output stream, using the specific MIME type.
  3. */
  4. @Override
  5. public void writeTo(Object obj, String mimeType, OutputStream os)
  6. throws IOException {
  7. if (obj instanceof Multipart) {
  8. try {
  9. ((Multipart)obj).writeTo(os);
  10. } catch (MessagingException e) {
  11. IOException ioex =
  12. new IOException("Exception writing Multipart");
  13. ioex.initCause(e);
  14. throw ioex;
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: org.restlet.jee/org.restlet.ext.jaxrs

  1. /**
  2. * @see MessageBodyWriter#writeTo(Object, Class, Type, Annotation[],
  3. * MediaType, MultivaluedMap, OutputStream)
  4. */
  5. public void writeTo(Multipart multipart, Class<?> type, Type genericType,
  6. Annotation[] annotations, MediaType mediaType,
  7. MultivaluedMap<String, Object> httpHeaders,
  8. OutputStream entityStream) throws IOException {
  9. try {
  10. multipart.writeTo(entityStream);
  11. } catch (MessagingException e) {
  12. if (e.getCause() instanceof IOException) {
  13. throw (IOException) e.getCause();
  14. }
  15. final IOException ioExc = new IOException(
  16. "Could not serialize the Multipart");
  17. ioExc.initCause(e);
  18. throw ioExc;
  19. }
  20. }
  21. }

代码示例来源:origin: stackoverflow.com

  1. connection.setRequestProperty("Accept", "application/json");
  2. connection.setDoOutput(true);
  3. body.writeTo(connection.getOutputStream());

代码示例来源:origin: org.springframework.integration/spring-integration-mail

  1. @Override
  2. protected AbstractIntegrationMessageBuilder<String> doTransform(javax.mail.Message mailMessage) throws Exception {
  3. Object content = mailMessage.getContent();
  4. if (content instanceof String) {
  5. return this.getMessageBuilderFactory().withPayload((String) content);
  6. }
  7. if (content instanceof Multipart) {
  8. ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  9. ((Multipart) content).writeTo(outputStream);
  10. return this.getMessageBuilderFactory().withPayload(
  11. new String(outputStream.toByteArray(), this.charset));
  12. }
  13. else if (content instanceof Part) {
  14. ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  15. ((Part) content).writeTo(outputStream);
  16. return this.getMessageBuilderFactory().withPayload(
  17. new String(outputStream.toByteArray(), this.charset));
  18. }
  19. throw new IllegalArgumentException("failed to transform contentType ["
  20. + mailMessage.getContentType() + "] to String.");
  21. }

代码示例来源:origin: org.springframework.integration/spring-integration-mail

  1. ((Multipart) content).writeTo(baos);
  2. content = byteArrayToContent(headers, baos);

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. multipart.writeTo(os);
  2. this.message.setContent(os.toString(), contentTypeHeader);
  3. } else {

相关文章