Using java.io library in eclipse so FileInputStream can read a dat file
问题 Goal : Print the data from a .dat file to the console using Eclipse. (Long-Term Goal) : Executable that I can pass a .dat file to and it creates a new txt file with the data formatted. The .dat : I know the .dat file contains control points that I will need to create a graph with using ECMAScript. Eclipse Setup: Created Java Project New > Class .. called the Class FileRead Now I have FileRead.java which is: 1/ package frp; 2/ 3/ import java.io.BufferedReader; 4/ import java.io.File; 5/ import