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天前
这个结果有什么问题吗?