/* Solution: Written by Jen Chen Updated on 01/11/2005 */ import java.io.*; import java.util.*; public class threadReadDriver { public static void main(String[] args) throws FileNotFoundException, IOException { System.out.println(); threadRead rt = new threadRead(); rt.getData("Customers.txt", "france"); //read into the tab delimited file. rt.setDaemon(true); rt.start(); System.out.println("\nEnd of Thread"); }//end of main() }//end of class Thread_FileIO({}