Zebra0.com

java filesJava

Java

Learn Java in step-by-step lessons.

Files

In this lesson you will learn how to create and read files.
There are two types of files: text files and binary files.
Text files have variable length records. (One line of text may have 20 characters, the next line 5, etc.) A text file must be read sequentially: line 1, then line 2, etc. Text files are also called Sequential files.

Each record in a binary file must be exactly the same size. Because all of the records are the same length, a binary file can be read either sequentially or randomly. Suppose each record has exactly 20 bytes. The location of the first record in the file is always known. The second record begins 20
bytes (1 * 20) past that. The fifth record begins 80 bytes ( 4*20) past the beginning of the file. If the position where each record starts can be calculated, then we can read the Nth record without reading all of the records before it. Binary files are also called Random Access files.

Please study the material at each of the links below.

  1. Inches to Centimeters table

  2. Inches to Centimeters file

  3. Reads a text file and displays it

  4. Read a text file and parses: Reads a text file of name and year born, parses it and displays name and age

GlossaryGlossary for files lesson
Full Glossary