你好,读取jar包中的配置文件:inputstream-in=这个.getclass().getclassloader().getresourceasstream(“/configfilename.properties文件名)读取jar包外部的配置文件:stringfilepath=系统.getproperty("用户.dir“”“/conf/configfilename.properties文件名“inputstreamin=newbufferedinputstream(新fileinputstream(filepath))此外,如果应用程序中使用log4j.properties文件,则默认存储路径为src/log4j.properties。如上所述,我想把log4j.properties放在其他目录中。这样,在修改log4j配置文件时,就不需要再次键入jar包。将以下代码添加到主函数的第一行:propertyconfigurator.configure属性配置(系统.getproperty("用户.dir“”“/conf/log4j.properties”)