Java一次性读取文本文件所有内容

2018-05-24  本文已影响24人  caoxinyiyi

刚开始学习Java,最近需要将一个json文件的内容都读取到String对象中,然后进行处理。

示例代码:

//读取json文件的内容 
       public static String readToString(String fileName) {  
            String encoding = "UTF-8";  
            File file = new File(fileName);  
            Long filelength = file.length();  
            byte[] filecontent = new byte[filelength.intValue()];  
            try {  
                FileInputStream in = new FileInputStream(file);  
                in.read(filecontent);  
                in.close();  
            } catch (FileNotFoundException e) {  
                e.printStackTrace();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
            try {  
                return new String(filecontent, encoding);  
            } catch (UnsupportedEncodingException e) {  
                System.err.println("The OS does not support " + encoding);  
                e.printStackTrace();  
                return null;  
            }  
        }
上一篇 下一篇

猜你喜欢

热点阅读