Completed reading in the CSV #1
@ -8,11 +8,11 @@ public class Matrix {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] importCSV() {
|
public String[] importCSV(String file) {
|
||||||
String[] result = null;
|
String[] result = null;
|
||||||
String line;
|
String line;
|
||||||
try {
|
try {
|
||||||
BufferedReader br = new BufferedReader(new FileReader(""));
|
BufferedReader br = new BufferedReader(new FileReader(file));
|
||||||
|
|
||||||
line = br.readLine();
|
line = br.readLine();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user