zoukankan      html  css  js  c++  java
  • 获取项目中.txt 文件的内容

    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();
                }
            }
    }
    作者:逆舟
    https://www.cnblogs.com/zy-jiayou/
    本博客文章均为作者原创,转载请注明作者和原文链接。
  • 相关阅读:
    Netty简单聊天室
    JDK环境变量配置
    EasyUI Tabs
    NIO(五)
    NIO(四)
    银行对公业务和对私业务
    mysql常用操作
    LInux安装MySQL5.7.24详情
    Python3 SMTP发送邮件
    linux下sendmail邮件系统安装详情
  • 原文地址:https://www.cnblogs.com/zy-jiayou/p/6457866.html
Copyright © 2011-2022 走看看