FileExample.java:
import java.io.FileReader;
import java.io.FileNotFoundException;
public class FileExample
{
public static void main(String[] args)
{
try
{
FileReader reader = new FileReader(args[0]);
}
catch (FileNotFoundException x)
{
}
}
}
import java.io.FileNotFoundException;
public class FileExample
{
public static void main(String[] args)
{
try
{
FileReader reader = new FileReader(args[0]);
}
catch (FileNotFoundException x)
{
}
}
}