首页 > 其他 > 详细

获取项目中.txt 文件的内容

时间:2017-02-27 00:02:11      阅读:256      评论:0      收藏:0      [点我收藏+]

技术分享

 

package com.fh.controller.ruitai.util;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;

public class TomcatUtil {
    /**
     * @Description  读取文件
     * @author 张洋.
     * @date
     * @return
     * @throws ExceptionFile
     */
    public static String GetIdentified() throws Exception { // 
        File f = new File(TomcatUtil.class.getClassLoader().getResource("tomcatdentified.txt").getPath().replaceAll("%20", " "));
        FileInputStream input = new FileInputStream(f);
        BufferedInputStream buf = new BufferedInputStream(input);
        byte[] b = new byte[(int) f.length()];
        input.read(b);
        input.close();
        String identified=new String(b);
        return identified;
    }
        public static void main(String[] args) {
            try {
                GetIdentified();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
}

 

获取项目中.txt 文件的内容

原文:http://www.cnblogs.com/zy-jiayou/p/6457866.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!