Example usage for javax.activation MailcapCommandMap getMimeTypes

List of usage examples for javax.activation MailcapCommandMap getMimeTypes

Introduction

In this page you can find the example usage for javax.activation MailcapCommandMap getMimeTypes.

Prototype

public synchronized String[] getMimeTypes() 

Source Link

Document

Get all the MIME types known to this command map.

Usage

From source file:MailcapCommandMapDemo1.java

public static void main(String[] args) {
    MailcapCommandMap mailcapCommandMap = new MailcapCommandMap();

    String[] mimeTypes = mailcapCommandMap.getMimeTypes();
    for (String mimeType : mimeTypes) {
        System.out.println(mimeType);
        CommandInfo[] commandInfos = mailcapCommandMap.getAllCommands(mimeType);
        for (CommandInfo info : commandInfos) {
            System.out.println(" " + info.getCommandName() + " : " + info.getCommandClass());
        }/*from   w  w w  .ja  v  a 2s .co m*/
    }
}

From source file:Main.java

public static void main(String[] args) {
    MailcapCommandMap mailcapCommandMap = new MailcapCommandMap();
    String mailcap = "text/plain;" + "x-java-content-handler=beans.TextHandler;"
            + "x-java-view=beans.TextViewer;" + "x-java-edit=beans.TextEditor";
    mailcapCommandMap.addMailcap(mailcap);

    String[] mimeTypes = mailcapCommandMap.getMimeTypes();
    for (String mimeType : mimeTypes) {
        System.out.println(mimeType);
        CommandInfo[] commandInfos = mailcapCommandMap.getAllCommands(mimeType);
        for (CommandInfo info : commandInfos) {
            System.out.println(" " + info.getCommandName() + " : " + info.getCommandClass());
        }/*from   w ww  .  ja v a 2 s  .  com*/
    }
}

From source file:MailcapCommandMapDemo2.java

public static void main(String[] args) {
    MailcapCommandMap mailcapCommandMap = new MailcapCommandMap();
    String mailcap = "text/plain;; " + "x-java-content-handler=beans.TextHandler;"
            + "x-java-view=beans.TextViewer;" + "x-java-edit=beans.TextEditor";
    mailcapCommandMap.addMailcap(mailcap);
    // Get all MIME types
    String[] mimeTypes = mailcapCommandMap.getMimeTypes();
    for (String mimeType : mimeTypes) {
        System.out.println(mimeType);
        CommandInfo[] commandInfos = mailcapCommandMap.getAllCommands(mimeType);
        for (CommandInfo info : commandInfos) {
            System.out.println(" " + info.getCommandName() + " : " + info.getCommandClass());
        }// w w w  .  j a  v  a 2 s.co m
    }
}