У меня есть большой набор данных с текстовыми файлами (txt-Format). В TextFiles будут содержащий данные в этом формате:Как удалить некоторые столбцы из набора данных?
Name, Number, Timestamp, Sensordata1, Sensordata2, ... , Sensordata40
Name, Number, Timestamp, Sensordata1, Sensordata2, ... , Sensordata40
Name, Number, Timestamp, Sensordata1, Sensordata2, ... , Sensordata40
Теперь мне нужно, чтобы удалить номер и Timestamp из каждой строки.
Мой код на данный момент:
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("file.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
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());
}
Как я могу это сделать в Java?
Somethin g, например 'String.split (',')', получить массив и удалить то, что вам нужно – Furtiro