作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我是一个非常新手的程序员,试图在 Java Eclipse 中读取文本文件。
Here is my code:
package readFromfile;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class justDo {
public static void main(String[] args) throws FileNotFoundException {
System.out.println(System.getProperty("user.dir"));
File file = new File(System.getProperty("user.dir") +
"/src/report.txt");
Scanner hemp = new Scanner(file);
System.out.println(hemp);
}
}
Instead of reading a text file and displaying the file's contents in the console I get this:
C:\Users\Vanessa\eclipse-workspace\readFromfile
java.util.Scanner[delimiters=\p{javaWhitespace}+][position=0][match
valid=false][need input=false][source closed=false][skipped=false][group
separator=\,][decimal separator=\.][positive prefix=][negative prefix=\Q-
\E][positive suffix=][negative suffix=][NaN string=\QNaN\E][infinity
string=\Q?\E]
有人可以解释一下我为什么会收到这个信息,并解释一下如何在 Java Eclipse 中正确读取文本文件吗?请帮忙。非常感谢大家。
我是一名优秀的程序员,十分优秀!