I\'m currently working on a lab in my cpe class and we have to create a simple program that scans in strings from a .txt file and prints them to a different .txt file. So fa
When accessing files with Java I/O, you must include the file's filetype extension (if one exists).
File input = new File("input.txt"); File output = new File("output.txt");