Input/Output: Files

Dr Andy Evans

[Fullscreen]

  • Files
  • File types

     

  • Dealing with files starts with encapsulating the idea of a file in an object

File locations

Captured in two classes
  • java.io.File : Encapsulates a file on a drive.
  • java.net.URL : Encapsulates a Uniform Resource Locator (URL), which could include internet addresses.

java.io.File

  • Before we can read or write files we need to capture them. The File class represents an external file.
    File(String pathname);
    File f = new File("e:/myFile.txt");
    
  • However, we must remember that different OSs have different file systems.
  • Note the use of a forward slash.
  • Java copes with most of this, but "e:" wouldn't work in *NIX / a Mac / mobiles etc.

Binary vs. Text files

  • Note that :
    00000000 00110001 =  code 49  = char  "1"
    
    Seems much smaller - it only uses 2 bytes to store the character "1", whereas storing the int 1 takes 4 bytes.
  • However each character takes this, so:
00000000 00110001 
=  code 49  = char  "1"
00000000 00110001 00000000 00110010 
=  code 49, 50  = char  "1" "2"
00000000 00110001 00000000 00110010 00000000 
00110111  = code 49, 50, 55  = char  "1" "2" "7"
  • Whereas with an single int of 4 bytes, we can store 127, thus:
00000000 00000000 00000000 01111111 = int 127

Binary vs. Text files

  • In short, it is much more efficient to store anything with a lot of numbers as binary (not text).
  • However, as disk space is cheap, networks fast, and it is useful to be able to read data in notepad etc. increasingly people are using text formats like XML.
  • As we'll see, the filetype determines how we deal with files.

Review

File f = new File("e:/myFile.txt");
  • Three methods of getting file locations:
    1. Hardwiring
    2. FileDialog
    3. Class getResource()
  • Need to decide the kind of file we want to deal with.