Fix Consts.loadProperties. Fixes #154.

This commit is contained in:
Sutra Zhou
2018-06-25 17:05:56 +08:00
parent e2aeed4435
commit 3984bd3e0a
9 changed files with 9 additions and 9 deletions
@@ -18,7 +18,7 @@ public final class Consts {
private static Properties loadProperties() {
Properties properties = new Properties();
InputStream inputStream = Consts.class.getResourceAsStream("../weixin4j.properties");
InputStream inputStream = Consts.class.getResourceAsStream("/com/foxinmy/weixin4j/weixin4j.properties");
try {
properties.load(inputStream);
} catch (IOException e) {