Unhandled exception type FileNotFoundException

Unhandled exception type FileNotFoundException
refer to‮ual:‬tturi.com
Exception in thread "main" java.lang.Error: Unresolved compilation problem: 
	Unhandled exception type FileNotFoundException

Solution

Add throws declaration
or
Surround with try/catch

change

public static void main(String[] args)   {
	...
	    Scanner sc = new Scanner(file);

to

public static void main(String[] args) throws FileNotFoundException   {
		...
	    Scanner sc = new Scanner(file);
Created Time:2017-10-07 13:41:56  Author:lautturi