码迷,mamicode.com
首页 > 编程语言 > 详细

[java] java解析txt文件

时间:2016-11-08 14:24:58      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:erro   sonar   解析   net   ram   highlight   util   txt   str   

 

/**
     * 读取txt文件内容封装为map返回
     * @param filePath
     * @return
     */
    public static String readTxt(String filePath){
        List<Map<String,Object>> lists= Lists.newArrayList();
        try {
            File file=new File(filePath);
                InputStreamReader read = new InputStreamReader(
                        new FileInputStream(file),ENCODING);//考虑到编码格式
                BufferedReader bufferedReader = new BufferedReader(read);
                String lineTxt = null;
                while((lineTxt = bufferedReader.readLine()) != null){
                   String[] keys= lineTxt.split("\t");
                    Map<String,Object> map = Maps.newHashMap();
                   for(String key:keys){
                       String[] values =key.split("=");
                        if(!StringUtils.isEmpty(values[0])){
                            map.put(values[0],values[1]);
                        }
                   }
                   lists.add(map);
                }
                read.close();
           return JSONArray.toJSONString(lists);
        } catch (Exception e) {
            log.error(e.getMessage(),e);
            return null;
        }
    }

  

[java] java解析txt文件

标签:erro   sonar   解析   net   ram   highlight   util   txt   str   

原文地址:http://www.cnblogs.com/lonelywolfmoutain/p/6042629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!