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

Java读取文件

时间:2018-02-23 15:57:32      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:logger   bsp   ace   buffer   red   exception   文件内容   edr   cep   

1、一次性读取整个文件内容

  /**
     * 一次性读取全部文件数据
     * @param strFile
     */
    public static void readFile(String strFile){
        try{
            InputStream is = new FileInputStream(strFile);
            int iAvail = is.available();
            byte[] bytes = new byte[iAvail];
            is.read(bytes);
            logger.info("文件内容:\n" + new String(bytes));
            is.close();
        }catch(Exception e){
            e.printStackTrace();
        }
    }

2、按行读取文件

/**
     * 按行读取文件
     * @param strFile
     */
    public static void readFileByLine(String strFile){
        try {
            File file = new File(strFile);
            BufferedReader bufferedReader = new BufferedReader(new FileReader(file));
            String strLine = null;
            int lineCount = 1;
            while(null != (strLine = bufferedReader.readLine())){
                logger.info("第[" + lineCount + "]行数据:[" + strLine + "]");
                lineCount++;
            }
        }catch(Exception e){
            e.printStackTrace();
        }
    }

 

Java读取文件

标签:logger   bsp   ace   buffer   red   exception   文件内容   edr   cep   

原文地址:https://www.cnblogs.com/stupid-vincent/p/8461974.html

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