java以数组形式写入文档,数组形式是什么样的格式
发布网友
发布时间:2022-05-03 02:31
我来回答
共1个回答
热心网友
时间:2022-07-01 14:37
public class Untitled1 {
public static void main(String[] args) {
try {
BufferedReader br=new BufferedReader(new InputStreamReader(new FileInputStream("写上文件的路径")));
String str=br.readLine();//从文件里面读出一行
String result="";//定义你需要的字符串数组组成的字符串
while(str!=null){
result+=str;//每读一行就加到result里面去
str=br.readLine();//继续从文件里面读,知道str为空为止
}
String[] array=result.split(",");//讲得到的result按照,分开得到一个数组
for(int i=0;i<array.length;i++){
array[i]=array[i].trim();//去掉有可能读出来的空格
System.out.println("array["+i+"]==>"+array[i]);
}
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();