zoukankan      html  css  js  c++  java
  • 读取jar包内的文件内容

    package com.chanpion.boot;
    
    import org.springframework.util.ResourceUtils;
    
    import java.io.File;
    import java.io.IOException;
    import java.net.URL;
    import java.util.Enumeration;
    import java.util.Properties;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    
    /**
     * @author April Chen
     * @date 2019/5/7 10:16
     */
    public class JarFileReader {
    
        public void read(String path) throws IOException {
            URL url = ResourceUtils.getURL(path);
            File file = ResourceUtils.getFile(url);
            JarFile jarFile = new JarFile(file);
            JarEntry jarEntry = jarFile.getJarEntry("config.properties");
            Properties properties = new Properties();
            properties.load(jarFile.getInputStream(jarEntry));
            Enumeration<?> enumeration = properties.propertyNames();
            while (enumeration.hasMoreElements()) {
                String key = (String) enumeration.nextElement();
                String value = properties.getProperty(key);
                System.out.println(key + ": " + value);
            }
        }
    }
  • 相关阅读:
    天网管理系统
    NSCTF web200
    程序逻辑问题
    Once More
    Guess Next Session
    上传绕过
    加了料的报错注入
    C++ GET UTF-8网页编码转换
    Android学习笔记函数
    C++ 模拟虚拟键盘按键表
  • 原文地址:https://www.cnblogs.com/april-chen/p/10823886.html
Copyright © 2011-2022 走看看