2015-04-01 116 views
1

我想读的文本文件并处理它data.so例如输入文件看起来像:读取和写入字符串的文件用JSON在Java中

john,judd,134 
Kaufman,kim,345 

则程序应该解析和存储这些数据在JSON文件的形式,从而将进一步processing.I'm使用JSON-simple此任务安排。而这是一个原型代码我已经写了:

package com.company; 

import org.json.simple.JSONObject; 

import java.io.*; 

public class Main { 


static JSONObject jsonObject = new JSONObject(); 
static String output; 

public static void main(String[] args) throws IOException { 

    read("/Users/Sepehr/Desktop/JSONexample.txt"); 
    write("/Users/Sepehr/Desktop/JSONexampleout,txt"); 

} 

public static String read(String filenameIn) throws IOException { 

    BufferedReader bufferedReader = new BufferedReader(new FileReader(filenameIn)); 
    String s ; 

    while ((s = bufferedReader.readLine()) != null) 

    { 
     String[] stringsArr = s.split(","); 


     jsonObject.put("famname" , stringsArr[0]); 
     jsonObject.put("name" , stringsArr[1]); 
     jsonObject.put("id", stringsArr[2]); 

     bufferedReader.close(); 


    } 

    return output=jsonObject.toJSONString(); 


} 


public static String write(String filenameOut) throws FileNotFoundException { 

    PrintWriter printWriter = new PrintWriter(filenameOut); 
    printWriter.write(jsonObject.toJSONString()); 
    printWriter.close(); 

    String se = "yaaayyy :|"; 
    return se; 

} 



} 

运行该程序后,这些是例外我得到:

Exception in thread "main" java.io.IOException: Stream closed 
at java.io.BufferedReader.ensureOpen(BufferedReader.java:97) 
at java.io.BufferedReader.readLine(BufferedReader.java:292) 
at java.io.BufferedReader.readLine(BufferedReader.java:362) 
at com.company.Main.read(Main.java:30) 
at com.company.Main.main(Main.java:18) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
at java.lang.reflect.Method.invoke(Method.java:597) 
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) 

究竟是什么错误?

以及如何为这个程序做出更好的设计?

+2

在一个侧面说明,别忘了在固定的输出文件扩展名的错字(点而不是逗号)'写(“/用户/ 'JSONexampleout.txt'不是'JSONexampleout,txt' – mshaaban 2015-04-01 09:39:50

回答

1

您关闭的BufferedReader在循环

while ((s = bufferedReader.readLine()) != null) 

    { 
     String[] stringsArr = s.split(","); 


     jsonObject.put("famname" , stringsArr[0]); 
     jsonObject.put("name" , stringsArr[1]); 
     jsonObject.put("id", stringsArr[2]); 

     //************* 
     bufferedReader.close(); // don't close the reader! 
     //************* 

    } 
+1

请注意,您不应该简单地删除'close'语句,而是移动它以便它在**之后执行**循环完成 – Subler 2015-04-01 09:33:17

+0

谢谢@ControlAltDel你能给我任何关于这个程序的总体设计的建议吗? – Vicarious 2015-04-01 09:43:04

+1

@Vicarious到目前为止,你的设计对我来说看起来很好...... – ControlAltDel 2015-04-01 10:36:52