解析json陣列檔案

lvzhou_MadSky發表於2013-06-07

File srcFile = new File( “D:/xxx.txt”);
        if(!srcFile.exists())
            return ;
        String jsonString = null;
        try {
            jsonString = FileUtils.readFileToString(srcFile, "utf-8");
        } catch (IOException e) {
            logger.error(e.getMessage());
        }
        JSONArray jsonArray = JSONArray.fromObject(jsonString);
        Object []objs = jsonArray.toArray();
        String strs = "";
        for(int i=0;i<objs.length;i++){
            Map m = (Map)objs[i];
            if(m.get("coding") == null)
                continue;
            String str = "'"+m.get("str").toString()+"'";
            strs+= str;
            if(i != objs.length-1){
                codings +=",";
            }
        }
    
        //執行完之後刪除檔案
        if(srcFile.exists()){
            srcFile.delete();
            logger.info("檔案已刪除");
        }

相關文章