Java Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
SFTP
Signatures
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
Upload
XML
XMP
Zip

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

Create Binary MIME

Demonstrates how to create a MIME document using the "binary" content-transfer-encoding.

 Chilkat Java Library Downloads for Windows, Linux, and MAC OS X

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    CkMime mime = new CkMime();

    boolean success;
    success = mime.UnlockComponent("Anything for 30-day trial");
    if (success == false) {
        System.out.println(mime.lastErrorText());
        return;
    }

    //  Set a custom headerr field:
    mime.AddHeaderField("Content-ID","PDFFile");

    //  Load a PDF file into the MIME body-part of the message.
    //  Note: This automatically sets the content-type and
    //  content-transfer-encoding header fields to appropriate values
    //  based on the file extension.  If specific values for these
    //  header fields are required, set the ContentType and
    //  Encoding properties after (as shown here)
    success = mime.SetBodyFromFile("test.pdf");
    if (success == false) {
        System.out.println(mime.lastErrorText());
        return;
    }

    //  Use binary MIME -- the MIME body will not be encoded
    //  but will instead consist of the binary data of the file.
    mime.put_Encoding("binary");

    //  Make sure our content-type is "application/pdf"
    //  (It should already be this value...)
    mime.put_ContentType("application/pdf");

    //  Save the MIME to a file.
    success = mime.SaveMime("outMime.txt");
    if (success == false) {
        System.out.println(mime.lastErrorText());
        return;
    }

    //  Success!
    System.out.println("Success!");
  }
}

 

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.