import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Scannercode {
that's all i know.




Posted 29 August 2009 - 10:37 AM
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Scannercode {
Posted 29 August 2009 - 10:52 AM
idk12, on 29 Aug, 2009 - 09:37 AM, said:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Scannercode {
Posted 29 August 2009 - 10:55 AM
public static void main(String[] args) throws IOException
File fileName = new File("test1.txt");
Scanner inFile = new Scanner(fileName);
This post has been edited by idk12: 29 August 2009 - 10:56 AM
Posted 29 August 2009 - 11:03 AM
idk12, on 29 Aug, 2009 - 09:55 AM, said:
public static void main(String[] args) throws IOException
File fileName = new File("test1.txt");
Scanner inFile = new Scanner(fileName);
Posted 29 August 2009 - 11:46 AM
Posted 29 August 2009 - 02:34 PM
