Results 1 to 3 of 3
- 11-30-2012, 08:42 PM #1
Member
- Join Date
- Nov 2012
- Posts
- 2
- Rep Power
- 0
Exception in thread "main" java.io.FileNotFoundException
Hey, I have started writing this program and I don't have any syntax errors but when I go to run the program I get this:
Exception in thread "main" java.io.FileNotFoundException: fileinput.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileReader.<init>(Unknown Source)
at Textinput.main(Textinput.java:13)
here's my code
I have tried making sure that my extensions are not repeated also I have tried saving the text file in different places and changing the directory path.Java Code:import java.io.FileNotFoundException; import java.io.FileReader; import java.util.Scanner; import javax.swing.JOptionPane; public class Textinput { public static void main(String[] args) throws FileNotFoundException { Scanner inFile = new Scanner(new FileReader("fileinput.txt")); String firstinteger; String secondinteger; String thirdinteger; firstinteger = inFile.next(); secondinteger = inFile.next(); thirdinteger = inFile.next(); inFile.close(); JOptionPane.showMessageDialog(null, "The first integer is " + firstinteger + "\n" + "The second integer is " + secondinteger + "\n" + "The third integer is " + thirdinteger, "Values", JOptionPane.INFORMATION_MESSAGE); } }
I'm quiet new to java every time i change something something else goes wrong :(
cheers
- 11-30-2012, 10:05 PM #2
Member
- Join Date
- Nov 2012
- Posts
- 2
- Rep Power
- 0
Re: Exception in thread "main" java.io.FileNotFoundException
Fixed, i hadn't checked about my extensions
sorry
- 12-01-2012, 03:13 AM #3
Similar Threads
-
Error: "Exception in thread "main" java.util.NoSuchElementException"
By Mattiscool in forum New To JavaReplies: 1Last Post: 11-02-2012, 11:38 PM -
"Exception in thread "main" java.lang.NoSuchMethodError: main"
By isnkumar in forum New To JavaReplies: 2Last Post: 06-20-2012, 12:18 AM -
Got struck with this :- " Exception in thread "main" java.lang.NullPointerException"
By Vermont in forum New To JavaReplies: 5Last Post: 12-21-2011, 06:44 PM -
Exception in thread "main" java.io.FileNotFoundException: reverse.dat (No such file o
By erin.ctm in forum New To JavaReplies: 4Last Post: 11-05-2010, 11:50 PM -
Question about error "Exception in thread "main" java.lang.NoSuchMethodError: main
By ferdzz in forum New To JavaReplies: 5Last Post: 06-22-2010, 03:51 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks