top.jfunc.common.propenv.ClasspathEnvStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
common utils like IOUtil,StrUtil,HoldProcessor.etc.
package top.jfunc.common.propenv;
import java.io.InputStream;
/**
* 从类路径下找
* @author 熊诗言
*/
public class ClasspathEnvStream extends BaseEnvStream {
@Override
protected InputStream loadInputStream(String fileName) {
return Thread.currentThread().getContextClassLoader().getResourceAsStream(fileName);
}
}