tem.png
//ToolUtil是当前类名称
Properties prop = new Properties();
try {
prop.load(ToolUtil.class.getClassLoader().getResourceAsStream("url-config.properties"));
Client.url = prop.getProperty("solr.url");
} catch (IOException e) {
e.printStackTrace();
}