Home Java Example Java Swing Graphics2D Show Image Reader and Image Writer by MIME Type



Show Image Reader and Image Writer by MIME Type
Posted on: October 15, 2008 at 12:00 AM
To show the image reader and image writer by MIME Type, we have used ImageIO class of the package javax.imageio.*.

Show Image Reader and Image Writer by MIME Type

     

This section illustrates you how to display the Image Reader and Image Writer by by MIME Type. 

To show the image reader and image writer by MIME Type, we have used ImageIO class of the package javax.imageio.*. The ImageIO class provides the methods for locating ImageReaders and ImageWriters.

The method getReaderMIMETypes() of class ImageIO returns an array of strings consisting of all the image MIME types which the current set of registered readers understands. The method getWriterMIMETypes() returns an array of strings consisting of all the image MIME types which the current set of registered writers understands.

Here is the code of ShowImageIOMimeType.java

import javax.imageio.*;

public class ShowImageIOMimeType {
  public static  void main(String args[])throws Exception{
  System.out.println("For Reading:");
  String reader[] = ImageIO.getReaderMIMETypes();
  for (int k = 0; k < reader.length; k++) {
  System.out.println(" MIME Types: " + reader[k]);
  }
  System.out.println("For Writing:");
  reader = ImageIO.getWriterMIMETypes();
  for (int k = 0; k < reader.length; k++) {
  System.out.println("MIME Types: " + reader[k]);
  }
  }
}

Output will be displayed on the console:

Download Source Code

Related Tags for Show Image Reader and Image Writer by MIME Type:
javacimageideclassiomethodsmethodsedtypevimimereadidpackagewriteshowfortoimageioshereaderitaxdesusepejavaximinasmcajpackadclesagelocmehowproackcatwritersvaxatpackhaimeeaandvassrithshoavatimageprmindodso


More Tutorials from this section

Ask Questions?    Discuss: Show Image Reader and Image Writer by MIME Type  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.