AttachmentPart setContentId() Method



Description

The Javax.xml.soap.AttachmentPart.setContentId(String contentId) method sets the MIME header whose name is "Content-ID" with the given value.

Declaration

Following is the declaration for javax.xml.soap.AttachmentPart.setContentId() method

public void setContentId(String contentId)

Parameters

contentId − a String giving the value of the "Content-ID" header

Return Value

This method does not return a value.

Exception

IllegalArgumentException − if there was a problem with the specified contentId value

Example

The following example shows the usage of javax.xml.soap.AttachmentPart.setContentId() method.

package com.tutorialspoint;

import java.util.Iterator;
import javax.activation.DataHandler;
import javax.xml.soap.*;

public class AttachmentPartDemo {

   public static void main(String[] args) {
      try {

         // create a new SOAPMessage
         SOAPMessage message = MessageFactory.newInstance().createMessage();

         // create a string as a new attachment 
         String attachment = "This is an attachment";

         // get the data handler and assign the attachment
         DataHandler handler = new DataHandler(attachment, "HandlerHeader");

         // create the attachment part
         AttachmentPart attachPart = message.createAttachmentPart(handler);

         // add content-id in the attachment
         attachPart.addMimeHeader("Content-ID", "10");

         // add the attachment part in the message
         message.addAttachmentPart(attachPart);

         // get the content id
         System.out.println("" + attachPart.getContentId());


      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

If we compile the code and execute it, this will produce the following result −

10
javax_xml_soap_attachmentpart.htm
Advertisements