JAVA中,从text文件中读取数据后存放到String[]中,最后得到这样的:Str...

发布网友 发布时间:2024-10-23 07:47

我来回答

2个回答

热心网友 时间:1天前

public
staticvoid readTxt(String path){

BufferedReader br =
null;

String temp =
"";

String[] str =
new String[2];

try{

br =
new BufferedReader(new FileReader(new File(path)));

for(int i=0; (temp = br.readLine()) != null; i++){

str[i] = temp;
}

System.
out.println(Arrays.toString(str));

}
catch(FileNotFoundException e){

e.printStackTrace();
}
catch(IOException e){

e.printStackTrace();
}

}

在main方法内调用就好了,不知道是不是你想要的效果

热心网友 时间:1天前

这个结果有什么问题吗?
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com