InputStream in = UCClient.class.getClassLoader().getResourceAsStream(
"config.properties");
Properties properties = new Properties();
try {
properties.load(in);
saveFilePath = properties.getProperty("saveFilePath");
} catch (Exception e) {
e.printStackTrace();
}