1 比如加载属性文件: InputStream is = this.getClass().getResourceAsStream("/config/config.properties"); Properties prop = new Properties(); prop.load(is); String path = (String) prop.get("config.uploadFilePath"); // do something