Jump to content

Java.io: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
{{lowercase|java.io}}
added links to API Javadocs
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 Java 1.4, the new package [[Java.nio|java.nio]] offers memory-mapped file access facilities providing the capacity for [[IO]] operations closer to the underlying hardware.
In [[J2SE]] 1.4, the new package [[Java.nio|java.nio]] offers memory-mapped file access facilities providing the capacity for [[IO]] operations closer to the underlying hardware.


==External links==
==External links==
* {{Javadoc:SE|package=java.io|java/io}} ([[Javadoc]] documentation)
*[http://java.sun.com/j2se/1.5.0/docs/api/java/io/package-summary.html java.io package summary]


{{compu-lang-stub}}
{{compu-lang-stub}}

Revision as of 22:03, 19 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.