Re: How do I ensure that the files used by my application are readable on all platforms (UNIX, Linux, Windows, Apple)?
Posted By:
Tim_Rohaly
Posted On:
Tuesday, May 8, 2001 08:46 AM
If you write the files using Java output streams,
then you will be able to read those same files
on any platform using Java input streams. This
is true because the byte ordering and format of
values written by Java is defined in the Java
Language Specification, and is not dependent
on the underlying machine architecture.