fxl
2023-05-04 e150655a785de36a65a26a0dc4d3d6d65fe7e9d0
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.hxzkoa.util;
 
import java.util.ResourceBundle;
 
 
 
public class Config {
    private static ResourceBundle bundle = ResourceBundle.getBundle("configs");
    String baowenSwitch;
    public static String getProperty(String key) {
        return bundle.getString(key);
    }
 
    public static String getCharset() {
        return getProperty("charset");
    }
    
    public static String getBaowen1() {
        return getProperty("baowenPath");
    }
 
    public static String getVersion() {
        return getProperty("version");
    }
 
    public static String getMapPath() {
        return getProperty("mapPath");
    }
 
    public static String getIconPath() {
        return getProperty("iconPath");
    }
 
    public static String getPostUrl() {
        return getProperty("postUrl");
    }
 
    public static String getUdpRunning() {
        return getProperty("udpRunning");
    }
    
    public static String getMessagePath() {
        return getProperty("messagePath");
    }
    
    public static String getDebugMessagePath() {
        return getProperty("debugMessagePath");
    }
    
    public static String getZhuceMessagePath() {
        return getProperty("zhuceMessagePath");
    }
    
    public static String getYuanshiMessagePath() {
        return getProperty("yuanshiMessagePath");
    }
    
    public static String getUDPMessagePath() {
        return getProperty("UDPMessagePath");
    }
    
    public static String getTCPMessagePath() {
        return getProperty("TCPMessagePath");
    }
    
    public static String getMysqlMessagePath() {
        return getProperty("mysqlMessagePath");
    }
    
    public static String getGasMessagePath() {
        return getProperty("gasMessagePath");
    }
    
    public static String getHEXMessagePath() {
        return getProperty("HEXMessagePath");
    }
    
    public static String getBaowenConfig() {
        return getProperty("baowenConfig");
    }
    
    
    public static String getMapConfig() {
        return getProperty("mapConfig");
    }
    
    public static String getPageConfig() {
        return getProperty("pageConfig");
    }
    
    public static String getAnchorConfig() {
        return getProperty("anchorConfig");
    }
    
    public static String getMysqlHost() {
        return getProperty("mysqlHost");
    }
    
    public static String getMysqlPort() {
        return getProperty("mysqlPort");
    }
}