PropertiesUtils.java
1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.drp.mobliemall.utils;
import android.util.Log;
import com.drp.mobliemall.app.GlobalContext;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class PropertiesUtils {
public static Properties getSysProperties() {
Properties properties = new Properties();
try {
int id = GlobalContext.getInstance().getResources().getIdentifier("sysconfig", "raw",GlobalContext.getInstance().getPackageName());
properties.load(GlobalContext.getInstance().getResources().openRawResource(id));
} catch (Exception e) {
e.printStackTrace();
}
return properties;
}
public static Properties getURLProperties() {
Properties p = new Properties();
try {
InputStream inputStream = PropertiesUtils.class.getClassLoader().getResourceAsStream(
"resources/URLHelper.properties");
p.load(inputStream);
} catch (IOException e1) {
e1.printStackTrace();
}
return p;
}
}