import java.io.File;
import java.io.FileNotFoundException; import java.util.Scanner;
public class MailMessage {
public static void main(String[] args) throws FileNotFoundException {
// TODO Auto-generated method stub
int i = 0;
String condition = "EOF";
String[] mail = new String[500];
File file = new File("C:\\Users\\sailo\\eclipse-workspace\\mail.txt");
Scanner mailInput = new Scanner(file);
while (mailInput.hasNextLine() && i < 500 && condition != "EOF") {
mail[i] = mailInput.nextLine();
i++;
System.out.print(mail[1] + "\n");
}
}