码:
public class MainApplication {
public static void main(String[] args) throws IOException {
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("data/temp.CSV");
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println (strLine);
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}
Run Code Online (Sandbox Code Playgroud)
CSV档案资料: …