我正在学习从文本文件获取输入并阅读内容的所有不同方法。我正在努力使用try-catch块(带有资源),并读取文件名。
以下是到目前为止我为这部分写的内容:-
public static void main(String[] args)
{
ArrayList<StationRecord> data = new ArrayList<>();
String stationName = null;
Scanner scan = new Scanner(System.in);
System.out.println("What is the filename?");
String input = scan.nextLine();
File file = new File(input);
try(BufferedReader in = new BufferedReader(new FileReader(file))){
while(scan.hasNext()){
stationName = scan.nextLine();
int yearMonthDay = scan.nextInt();
int max = scan.nextInt();
int min = scan.nextInt();
int avg = scan.nextInt();
double dif = scan.nextDouble();
StationRecord sr = new StationRecord(yearMonthDay, max, min, avg, dif);
data.add(sr);
}
}
catch(IOException e)
{
e.printStackTrace();
}
catch(Exception e)
{
e.printStackTrace();
}
}
我试图不仅针对一个文件,而且针对两个文件执行此操作。无论如何,以下是输入示例:-
控制台:文件名是什么?
TempData2018a.txt
输入此内容后,我尝试遍历文本文件中的数据,并将其添加到类型为 StationRecord 的 ArrayList (我的其他类)。 / p>
任何建议和指导将不胜感激!另外,关于如何使用2个文件执行此操作的任何输入都将非常棒!
编辑:.txt文件数据示例
PITTSBURGH ALLEGHENY CO AIRPORT PA
20180101 11 2 7 -22.614762
20180102 12 5 9 -20.514762
20180103 23 2 13 -16.414762
我试图将整个第一行存储在一个名为stationName的变量中。然后我试图将下一个int,int,int和int double存储在 StationRecord 类型的 ArrayList 中。
答案 0 :(得分:2)
由于这是2018年,请停止使用new File(..)
并开始使用nio API。在使用Java 8时,您可以轻松实现此处要实现的目标!因此,您可以这样创建StationRecord
:
Path filePath = Paths.get(pathToFile);
String stationName = Files.lines(filePath)
.findFirst()
.get();
List<StationRecord> stationRecords =
Files.lines(filePath)
.skip(1) //Skip first line since it has station name
.map(line -> line.split("\\s")) // split at a space starting from 2nd line
.map(
stationData -> new StationRecord(Integer.valueOf(stationData[0]),
Integer.valueOf(stationData[1]), Integer.valueOf(stationData[2]),
Integer.valueOf(stationData[3]), Double.valueOf(stationData[4]))) // Create StationRecord object using the split fields
.collect(Collectors.toList()); // Collect result to an ArrayList
答案 1 :(得分:1)
使用 Java 7 和 Java 8 API的功能,可以解决以下问题:
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class LineOperation {
private static List<String> lines;
public static void main(String[] args) throws IOException {
lines = Collections.emptyList();
try {
lines = Files.readAllLines(Paths.get("C:\\Users\\Abhinav\\Downloads\\TempData2018a.txt"), StandardCharsets.UTF_8);
String stationName = lines.get(0);
String[] arr = null;
ArrayList<StationRecord> data = new ArrayList<>();
for(int i=1;i<lines.size();i++) {
arr = lines.get(i).split(" ");
data.add(new StationRecord(Long.parseLong(arr[0]), Integer.parseInt(arr[1]), Integer.parseInt(arr[2]), Integer.parseInt(arr[3]), Double.parseDouble(arr[4])));
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
但是,我强烈建议您参考以下链接,以获取有关 Java I / O 的进一步说明:-