java.io

Home
Java Source Code / Java Documentation 2
1.2D
2.3D
3.Ajax
4.Algebra
5.App Engine
6.Aspect
7.Assemble
8.Cache
9.Cassandra
10.Chat
11.Cloud
12.CMS
13.CouchDB
14.Crypt
15.Database
16.Distributed
17.Eclipse
18.Facebook
19.File
20.Forum
21.GAE
22.Game
23.Google tech
24.Graph
25.Graphic
26.GWT
27.Hibernate
28.HTML
29.HTTP
30.Image
31.IntelliJ
32.IRC
33.J2EE
34.J2ME
35.JDBC
36.JPA
37.JSON
38.JSR
39.JUnit
40.JVM
41.Language
42.Linux
43.Math
44.Maven
45.Media
46.Messenger
47.MiddleWare
48.Mobile
49.Mock
50.MongoDB
51.Mp3
52.Music
53.MVC
54.Network
55.OpenID
56.OSGi
57.Parse
58.Persist
59.Petri
60.Phone
61.Physics
62.REST
63.Robot
64.RPC
65.RSS
66.Ruby
67.Script
68.Search
69.Spring
70.SQL
71.SSH
72.Sudoku
73.Swing
74.Tapestry
75.Test
76.Text
77.Torrent
78.Twitter
79.UML
80.UnTagged
81.Utilities
82.Web
83.Wiki
84.XML
Java Source Code / Java Documentation 2 » Script » java2script » java.io 
java.io
Java Source File NameTypeComment
BufferedInputStream.javaClass BufferedInputStream is a class which takes an input stream and buffers the input.
BufferedOutputStream.javaClass BufferedOutputStream is a class which takes an output stream and buffers the writes to that stream.
BufferedReader.javaClass BufferedReader is a buffered character input reader.
BufferedWriter.javaClass BufferedWriter is for writing buffered character output.
ByteArrayInputStream.javaClass ByteArrayInputStream is used for streaming over a byte array.
ByteArrayOutputStream.javaClass ByteArrayOutputStream is a class whose underlying stream is represented by a byte array.
CharArrayReader.javaClass CharArrayReader is used as a buffered character input stream on a character array.
CharArrayWriter.javaClass CharArrayWriter is used as a character output stream on a character array.
CharConversionException.javaClass This is the top level class for character conversion exceptions.
Closeable.javaInterface Closeable represents the source or destination of some data which can be called its close method to release resources it holds.
DataInput.javaInterface DataInput is an interface which declares methods for reading in typed data from a Stream.
DataOutput.javaInterface DataOutput is an interface which declares methods for writing typed data to a Stream.
EOFException.javaClass This End Of File (EOF) exception is thrown when a program encounters the end of a file or stream during an operation.
Externalizable.javaInterface Objects that want to be serialized/deserialized using ObjectOutputStream/ObjectInputStream but defining their own byte representation should implement this interface.
FileNotFoundException.javaClass This IO exception is thrown when a file specified by a program cannot be found.
FilterInputStream.javaClass FilteredInputStream is a class which takes an input stream and filters the input in some way.
FilterOutputStream.javaClass FilteredOutputStream is a class which takes an output stream and filters the output in some way.
Flushable.javaInterface

Indicates that an output object can be flushed.

InputStream.javaClass InputStream is an abstract class for all byte input streams.
InterruptedIOException.javaClass This IO exception is thrown when a program reading or writing to a stream is interrupted.
InvalidClassException.javaClass A problem was found with the class of one of the objects being serialized or deserialized.
InvalidObjectException.javaClass The object graph loaded (deserialized) can be validated by a collection of validator objects.
IOException.javaClass This IO exception is thrown when a program encounters some sort I/O error.
NotActiveException.javaClass Some methods in ObjectInputStream and ObjectOutputStream can only be called from a nested call to readObject() or writeObject().
NotSerializableException.javaClass When an implementation of ObjectOutput.writeObject() is passed an object that is not serializable, it will throw this type of exception.
ObjectStreamException.javaClass This is the superclass of all exceptions that can happen when serializing or deserialing objects.
ObjectStreamField.javaClass This class represents object fields that are saved to the stream, by serialization.
OptionalDataException.javaClass When readObject() encounters primitive types (int, char, etc) instead of an object instance in the input stream, this type of exception will be thrown.
OutputStream.javaClass OutputStream is an abstract class for all byte output streams.
Reader.javaClass Reader is an Abstract class for reading Character Streams.
Serializable.javaInterface Objects that want to be serialized/deserialized using ObjectOutputStream/ObjectInputStream should implement this interface.
StreamCorruptedException.javaClass When readObject() cannot read an object from the input stream due to missing information (cyclic reference that doesn't match previous instance or missing class descriptor for instance to be loaded) this type of exception is thrown.
StringBufferInputStream.javaClass StringBufferInputStream is a class for to allow a String to be used as an InputStream.
StringReader.javaClass StringReader is used as a character input stream on a String.
StringWriter.javaClass StringWriter is an class for writing Character Streams to a StringBuffer.
SyncFailedException.javaClass This IO exception is thrown when the method sync() in FileDescriptor failed to complete.
UnsupportedEncodingException.javaClass This IO exception is thrown when a program asks for a particular character converter and it is not available.
UTFDataFormatException.javaClass This IO exception is thrown when a program attempts to read a UTF-8 String and the encoding is incorrect.
WriteAbortedException.javaClass This type of exception is thrown by readObject() when it detects an exception marker in the input stream.
Writer.javaClass Writer is an Abstract class for writing Character Streams.
ww__w___.___j__av_a___2_s__.c___om___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.