Java.io: Difference between revisions
Appearance
Content deleted Content added
added links to API Javadocs |
Updated java.nio link |
||
Line 3: | Line 3: | ||
'''java.io''' is a package of the [[Java programming language]] dealing with system input and output. Classes facilitating serialisation, the manipulation of files, streams and the exceptions arising from these [[IO]] operations are placed in this package. |
'''java.io''' is a package of the [[Java programming language]] dealing with system input and output. Classes facilitating serialisation, the manipulation of files, streams and the exceptions arising from these [[IO]] operations are placed in this package. |
||
In [[J2SE]] 1.4, the new package [[ |
In [[J2SE]] 1.4, the new package [[New I/O|java.nio]] offers memory-mapped file access facilities providing the capacity for [[IO]] operations closer to the underlying hardware. |
||
==External links== |
==External links== |
Revision as of 22:37, 20 January 2006
java.io is a package of the Java programming language dealing with system input and output. Classes facilitating serialisation, the manipulation of files, streams and the exceptions arising from these IO operations are placed in this package.
In J2SE 1.4, the new package java.nio offers memory-mapped file access facilities providing the capacity for IO operations closer to the underlying hardware.