View Single Post
  #2 (permalink)  
Old 07-20-2007, 09:02 AM
cruxblack cruxblack is offline
Senior Member
 
Join Date: Jul 2007
Posts: 130
cruxblack will become famous soon enough
What version of Java ur using?
It work just well on my computer, maybe some incompatibility problem with the class?
Code:
import java.util.*; import java.io.*; public class scanCheck { public static void main(String[] args)throws IOException { File myInFile = new File("scanCheck.txt"); java.util.Scanner myinput = new java.util.Scanner(myInFile); while(myinput.hasNext()) { String first = myinput.next(); System.out.println(first); } } }
Reply With Quote