java.io

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » 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.
DataInputStream.javaClass DataInputStream is a filter class which can read typed data from a Stream. Typically, this stream has been written by a DataOutputStream.
DataOutput.javaInterface DataOutput is an interface which declares methods for writing typed data to a Stream.
DataOutputStream.javaClass DataOutputStream is a filter class which can write typed data to a Stream. Typically, this stream can be read in by a DataInputStream.
EmulatedFields.javaClass An EmulatedFields is an object that represents a set of emulated fields for an object being dumped or loaded.
EmulatedFieldsForDumping.javaClass An EmulatedFieldsForDumping is an object that represents a set of emulated fields for an object being dumped.
EmulatedFieldsForLoading.javaClass An EmulatedFieldsForLoading is an object that represents a set of emulated fields for an object being loaded.
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.
File.javaClass File is a class which represents a file name or directory.
FileDescriptor.javaClass FileDescriptor is the lowest level representation of a File, Device, or Socket.
FileFilter.javaInterface
FileInputStream.javaClass FileInputStream is a class for reading bytes from a file.
FilenameFilter.javaInterface FilenameFilter is an interface which declares methods for filtering file names in the list method of File.
FileNotFoundException.javaClass This IO exception is thrown when a file specified by a program cannot be found.
FileOutputStream.javaClass FileOutputStream is a class whose underlying stream is represented by a file in the operating system.
FilePermission.javaClass The class FilePermission is responsible for granting access to files or directories.
FilePermissionCollection.javaClass FilePermissionCollection is a class which holds a collection of FilePermission objects and can answer a boolean indicating whether or not a specific permissions is implied by a FilePermissionCollection.
FileReader.javaClass FileReader is class for turning a file into a character Stream.
FileWriter.javaClass FileWriter is a class for writing characters out to a file.
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.
FilterReader.javaClass FilterReader is a class which takes a Reader and filters the input in some way.
FilterWriter.javaClass FilterWriter is a class which takes a Writer 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.
InputStreamReader.javaClass InputStreamReader is class for turning a byte Stream into a character Stream. Data read from the source input stream is converted into characters by either a default or provided character converter.
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.
LineNumberInputStream.javaClass LineNumberInputStream is a filter class which counts the number of line terminators from the data read from the target InputStream.
LineNumberReader.javaClass LineNumberReader is a buffered character input reader which counts line numbers as data is being read.
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.
ObjectInput.javaInterface Streams to be used with serialization to read objects must implement this interface.
ObjectInputStream.javaClass An ObjectInputStream can be used to load Java objects from a stream where the objects were saved using an ObjectOutputStream.
ObjectInputValidation.javaInterface Objects to perform validations on other objects read with serialization should implement this interface.
ObjectOutput.javaInterface Streams to be used with serialization to write objects must implement this interface.
ObjectOutputStream.javaClass An ObjectOutputStream can be used to save Java objects into a stream where the objects can be loaded later with an ObjectInputStream.
ObjectStreamClass.javaClass Instances of ObjectStreamClass are used to describe classes of objects used by serialization.
ObjectStreamConstants.javaInterface Helper interface with constants used by the serialization implementation.
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.
OutputStreamWriter.javaClass OutputStreamWriter is a class for turning a character output stream into a byte output stream.
PipedInputStream.javaClass PipedInputStream is a class which receives information on a communications pipe.
PipedOutputStream.javaClass PipedOutputStream is a class which places information on a communications pipe.
PipedReader.javaClass PipedReader is a class which receives information on a communications pipe.
PipedWriter.javaClass PipedWriter is a class which places information on a communications pipe.
PrintStream.javaClass PrintStream is a class which takes an OutputStream and provides convenience methods for printing common data types in a human readable format on the stream.
PrintWriter.javaClass PrintWriter is a class which takes either an OutputStream or Writer and provides convenience methods for printing common data types in a human readable format on the stream.
PushbackInputStream.javaClass PushbackInputStream is a filter class which allows bytes read to be pushed back into the stream so that they can be reread.
PushbackReader.javaClass PushbackReader is a filter class which allows chars read to be pushed back into the stream so that they can be reread.
RandomAccessFile.javaClass RandomAccessFile is a class which allows positioning of the next read anywhere in the file.
Reader.javaClass Reader is an Abstract class for reading Character Streams.
SequenceInputStream.javaClass SequenceInputStream is used for streaming over a sequence of streams concatenated together.
Serializable.javaInterface Objects that want to be serialized/deserialized using ObjectOutputStream/ObjectInputStream should implement this interface.
SerializablePermission.javaClass SerializablePermission objects represent permission to access unsafe serialization operations.
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.
StreamTokenizer.javaClass StreamTokenizer takes a stream and a set of tokens and parses them one at a time.
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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.