Code
/// Name: Afaf Nabeeha
/// Period: 7
/// Program Name: Displaying a File
/// File Name: Displaying.java
/// Date Finished: 3/8/2016 public class Displaying
import java.io.File;
import java.util.Scanner;
public class Displaying {
public static void main(String[] args) throws Exception {
String fileName = "";
Scanner keyboard = new Scanner(System.in);
while (!fileName.equals("exit"))
{
System.out.print("Which file would you like to read from?\n>");
fileName = keyboard.next();
if (!fileName.equals("exit"))
{
System.out.print("File \"" + fileName + "\":\n\n");
Scanner fileIn = new Scanner(new File(fileName));
while(fileIn.hasNext())
{
System.out.println(fileIn.nextLine());
}
fileIn.close();
System.out.println("\n\n Done.\n");
}
}
}
}
,/pre>
Picture of the output