Java Platform 1.2
Beta 4

Uses of Class
java.io.IOException

Packages that use IOException
com.sun.image.codec.jpeg Provides classes for encoding and decoding JPEG images.  
com.sun.java.swing Provides a set of "lightweight" (all-Java
com.sun.java.swing.text Provides classes and interfaces that deal with editable and noneditable text components.  
com.sun.java.swing.text.html Provides the class (HTMLEditorKit) and supporting classes for creating HTML text editors.  
com.sun.java.swing.text.rtf Provides a class (RTFEditorKit) for creating Rich-Text-Format text editors.  
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images.  
java.awt.color Provides classes for color spaces.  
java.awt.datatransfer Provides interfaces and classes for transferring data between and within applications.  
java.awt.dnd Provides interfaces and classes for supporting drag-and-drop operations.  
java.awt.print Provides classes and interfaces for a general printing API. The API includes such features as: the ability to specify document types mechanisms for control of page setup and page formats the ability to manage job control dialogs
java.beans Contains classes related to Java Beans development.  
java.beans.beancontext Provides classes and interfaces relating to bean context.  
java.io Provides for system input and output through data streams, serialization and the file system.  
java.lang Provides classes that are fundamental to the design of the Java programming language.  
java.net Provides the classes for implementing networking applications.  
java.rmi Provides the RMI package.  
java.rmi.activation Provides support for RMI Object Activation.  
java.rmi.server Provides classes and interfaces for supporting the server side of RMI. A group of classes are used by the stubs and skeletons generated by the rmic stub compiler.  
java.security Provides the classes and interfaces for the security framework.  
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
java.util.jar Provides classes for creating and reading JAR files.  
java.util.mime Provides classes for dealing with MIME (Multipurpose Internet Mail Extension) types (RFC 2045, RFC 2046).  
java.util.zip Provides classes for computing checksums of data and for compressing and decompressing data using standard ZIP and GZIP formats.  
org.omg.CORBA.portable   
 

Uses of IOException in com.sun.image.codec.jpeg
 

Methods in com.sun.image.codec.jpeg that throw IOException
 Raster JPEGImageDecoder.decodeAsRaster()
          Decode the JPEG stream that was passed as part of construction.
 BufferedImage JPEGImageDecoder.decodeAsBufferedImage()
          Decodes the current JPEG data stream.
 void JPEGImageEncoder.encode(BufferedImage bi)
          Encode a BufferedImage as a JPEG data stream.
 void JPEGImageEncoder.encode(BufferedImage bi, JPEGEncodeParam jep)
          Encode a BufferedImage as a JPEG data stream.
 void JPEGImageEncoder.encode(Raster ras)
          Encode a Raster as a JPEG data stream.
 void JPEGImageEncoder.encode(Raster ras, JPEGEncodeParam jep)
          Encode a Raster as a JPEG data stream.
 

Uses of IOException in com.sun.java.swing
 

Methods in com.sun.java.swing that throw IOException
 int ProgressMonitorInputStream.read()
           
 int ProgressMonitorInputStream.read(byte[] b)
           
 int ProgressMonitorInputStream.read(byte[] b, int off, int len)
           
 long ProgressMonitorInputStream.skip(long n)
           
 void ProgressMonitorInputStream.close()
           
 void ProgressMonitorInputStream.reset()
           
 void JEditorPane.setPage(URL page)
          Sets the current url being displayed.
 void JEditorPane.setPage(String url)
          Sets the current url being displayed.
 

Constructors in com.sun.java.swing that throw IOException
JEditorPane.JEditorPane(URL initialPage)
          Creates a JEditorPane based on a specified URL for input.
JEditorPane.JEditorPane(String url)
          Creates a JEditorPane based on a string containing a URL specification.
 

Uses of IOException in com.sun.java.swing.text
 

Methods in com.sun.java.swing.text that throw IOException
 void JTextComponent.read(Reader in, Object desc)
          Initializes from a stream.
 void JTextComponent.write(Writer out)
          Stores the contents of the model into the given stream.
abstract  void EditorKit.read(InputStream in, Document doc, int pos)
          Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
abstract  void EditorKit.write(OutputStream out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
abstract  void EditorKit.read(Reader in, Document doc, int pos)
          Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
abstract  void EditorKit.write(Writer out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
 void DefaultEditorKit.read(InputStream in, Document doc, int pos)
          Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler.
 void DefaultEditorKit.write(OutputStream out, Document doc, int pos, int len)
          Writes content from a document to the given stream in a format appropriate for this kind of content handler.
 void DefaultEditorKit.read(Reader in, Document doc, int pos)
          Inserts content from the given stream, which will be treated as plain text.
 void DefaultEditorKit.write(Writer out, Document doc, int pos, int len)
          Writes content from a document to the given stream as plain text.
 void StyleContext.writeAttributes(ObjectOutputStream out, AttributeSet a)
          Context-specific handling of writing out attributes
 void StyleContext.readAttributes(ObjectInputStream in, MutableAttributeSet a)
          Context-specific handling of reading in attributes
static void StyleContext.writeAttributeSet(ObjectOutputStream out, AttributeSet a)
          Writes a set of attributes to the given object stream for the purpose of serialization.
static void StyleContext.readAttributeSet(ObjectInputStream in, MutableAttributeSet a)
          Reads a set of attributes from the given object input stream that have been previously written out with writeAttributeSet.
protected abstract  void AbstractWriter.write()
          This abstract method needs to be implemented by subclasses.
protected  void AbstractWriter.text(Element elem)
          Writes out text.
protected  void AbstractWriter.indent()
          Does indentation.
protected  void AbstractWriter.write(char ch)
          Writes out a character.
protected  void AbstractWriter.write(String str)
          Writes out a string.
protected  void AbstractWriter.writeAttributes(AttributeSet attr)
          Writes out the set of attributes as " =" pairs.
 

Uses of IOException in com.sun.java.swing.text.html
 

Methods in com.sun.java.swing.text.html that throw IOException
 void StyleSheet.loadRules(Reader in, URL ref)
          Load a set of rules that have been specified in terms of CSS1 grammar.
 void HTMLEditorKit.read(Reader in, Document doc, int pos)
          Create and initialize a model from the given stream which is expected to be in a format appropriate for this kind of editor.
 void HTMLEditorKit.write(Writer out, Document doc, int pos, int len)
          Write content from a document to the given stream in a format appropriate for this kind of content handler.
abstract  void HTMLEditorKit.Parser.parse(Reader r, HTMLEditorKit.ParserCallback cb)
          Parse the given stream and drive the given callback with the results of the parse.
 void HTMLWriter.write()
          This is method that iterates over the the Element tree and controls the writing out of all the tags and its attributes.
protected  void HTMLWriter.writeAttributes(AttributeSet attr)
          Writes out the attribute set.
protected  void HTMLWriter.emptyTag(Element elem)
          Writes out all empty elements i.e tags that have no corresponding end tag.
protected  void HTMLWriter.startTag(Element elem)
          Writes out a start tag for the element.
protected  void HTMLWriter.endTag(Element elem)
          Writes out an end tag for the element.
protected  void HTMLWriter.comment(Element elem)
          Writes out comments.
protected  void HTMLWriter.writeEmbeddedTags(AttributeSet attr)
          This method searches for embedded tags in the AttributeSet and writes them out.
protected  void HTMLWriter.closeOutUnwantedEmbeddedTags(AttributeSet attr)
          This method searches the attribute set and for each tag that is stored in the tag vector.
 void MinimalHTMLWriter.write()
          This method is responsible for generating html output from a StyledDocument.
protected  void MinimalHTMLWriter.writeAttributes(AttributeSet attr)
          This method writes out all the attributes that are for the following types: StyleConstants.
protected  void MinimalHTMLWriter.text(Element elem)
          This method is responsible for writing text out.
protected  void MinimalHTMLWriter.writeStartTag(String tag)
          This method writes out a start tag approrirately indented.
protected  void MinimalHTMLWriter.writeEndTag(String endTag)
          This method writes out a end tag approrirately indented.
protected  void MinimalHTMLWriter.writeHeader()
          This method writes out the and