gpt4 book ai didi

java - 读取文件时出错(Java)

转载 作者:行者123 更新时间:2023-11-29 05:57:50 25 4
gpt4 key购买 nike

我在这里发布了一个类似的问题:Read from a file containing integers - java但无法得到像样的答复。

现在我写了这段新代码,它只读取一个文件并输出结果。

每当我尝试从文件中读取时,我都会收到 FileNotFoundException。代码如下:

import java.io.*;

public class second {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {

File f = new File("C:\\Users\\Haroon\\workspace\\ppp\\temperature.txt");
FileReader file = new FileReader(f);
BufferedReader buf = new BufferedReader(file);

String s = null;
while((s = buf.readLine()) != null){
System.out.println(s);
}
}

这很奇怪,因为该文件位于项目的文件夹中。任何帮助将不胜感激。

最佳答案

那应该行得通。转到文件的位置,复制路径,将其粘贴到您的代码中,然后转义斜杠。你错过了什么。

还要检查文件的名称/扩展名是否正确,您可以使用类似“temperature.txt.txt”的内容。

关于java - 读取文件时出错(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11373911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com