使用字符串数组静态初始化方式模拟读取文件数据
时间: 2024-02-15 16:03:27 浏览: 66
可以使用以下代码来模拟读取文件数据:
```java
String[] fileData = {
"This is the first line of the file.",
"This is the second line.",
"Here's the third line.",
"And finally, the fourth line."
};
```
这段代码将创建一个字符串数组,并使用静态初始化方式为其赋值。每个数组元素都是文件中的一行数据。你可以通过使用循环遍历数组来模拟读取文件数据。
阅读全文