//Displays the contents of a file
//Usage: FileDisplay FileName
//By Neil Broadbent

import java.io.*;
import java.util.StringTokenizer;
import java.util.*;
import NeilClass.*;
import java.awt.*;

public class FileDisplay
{
    public static void main(String[] pArgs) throws IOException
        {
		String oneLine;
		String[] aStore = new String [100];
		int i = 0;
		int Return=-1;	
		File filen = new File(pArgs[0]); 
	
		FileInputStream theFile = new FileInputStream(pArgs[0]);
		int FileSize =(int)filen.length();
		byte Bytes[]=new byte[FileSize];
		Return=theFile.read(Bytes);
		
		String file1 = new String(Bytes);
		System.out.println(file1);
 
        }
}

