Thread: JFrame problem
View Single Post
  #2 (permalink)  
Old 01-10-2008, 11:10 PM
gibsonrocker800's Avatar
gibsonrocker800 gibsonrocker800 is offline
Senior Member
 
Join Date: Nov 2007
Location: New York
Posts: 143
gibsonrocker800 is on a distinguished road
Send a message via AIM to gibsonrocker800
What exactly do you need help with? Do you need help with reading the text file for the questions? If so, you should learn about FileReader.

Code:
try { String question = ""; FileReader reader = new FileReader(plate_techtonics.txt); Scanner in = new Scanner(reader); //read the file and get the question } catch(IOException e) { System.out.println("Error processing file"); }
__________________
//Haha javac, can't see me now, can ya?
Reply With Quote