This is what i have, i just pass in the filename in this, but i want to be able to get the filename from the user.
try {
        Scanner inFile = new Scanner (Paths.get("PostalCodeRecord.txt"));
        while (inFile.hasNextLine()) {
            String dataLine = inFile.nextLine();
            if (dataLine.length()>6){
                Scanner line = new Scanner (dataLine);
                String month = line.next();
 
    