-
Notifications
You must be signed in to change notification settings - Fork 11
/
I18N.java
314 lines (235 loc) · 6.39 KB
/
I18N.java
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
package org.hy.common;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.hy.common.app.Param;
/**
* I18N 国际化类
*
* @author ZhengWei(HY)
* @version v1.0
* @createDate 2014-07-10
*/
public class I18N implements java.io.Serializable
{
private static final long serialVersionUID = 3341255191566194267L;
/** 多国语言文本 */
private TablePartitionRID<String ,String> datas;
/** 当前多国语言标识 */
private String language;
/** 对于多国语言标识是否区分大小写:默认是忽略大小写的 */
private boolean isIgnoreCase;
public I18N()
{
this("");
}
public I18N(String i_Language)
{
this.datas = new TablePartitionRID<String ,String>();
this.isIgnoreCase = true;
this.setLanguage(i_Language);
}
/**
* 按文本ID,获取多国语言文本对象
*
* @param i_TextID
* @return
*/
public Param getITextInfo(String i_TextID)
{
return this.getITextInfo(this.getLanguage() ,i_TextID);
}
/**
* 指定语言,并按文本ID,获取多国语言文本对象
*
* @param i_TextID
* @return
*/
public Param getITextInfo(String i_Language ,String i_TextID)
{
if ( Help.isNull(i_Language) )
{
return null;
}
if ( Help.isNull(i_TextID) )
{
return null;
}
Param v_Param = new Param();
v_Param.setName(i_TextID);
v_Param.setValue(this.getIText(i_Language ,i_TextID));
v_Param.setComment(i_Language);
return v_Param;
}
/**
* 指定语言,获取其下所有多国语言文本对象
*
* @param i_Language
* @return
*/
public List<Param> getITextInfos(String i_Language)
{
if ( Help.isNull(i_Language) )
{
return null;
}
Map<String ,String> v_ITexts = this.datas.get(i_Language.trim().toUpperCase());
List<Param> v_Params = new ArrayList<Param>();
for (String v_ITextID : v_ITexts.keySet())
{
v_Params.add(new Param(v_ITextID ,v_ITexts.get(v_ITextID)));
}
return v_Params;
}
/**
* 按文本ID,获取多国语言文本
*
* @param i_TextID
* @return
*/
public synchronized String getIText(String i_TextID)
{
return this.getIText(this.getLanguage() ,i_TextID);
}
/**
* 指定语言,并按文本ID,获取多国语言文本
*
* @param i_TextID
* @return
*/
public synchronized String getIText(String i_Language ,String i_TextID)
{
if ( Help.isNull(i_Language) )
{
return "";
}
if ( Help.isNull(i_TextID) )
{
return "";
}
if ( this.datas.containsKey(i_Language.trim()) )
{
if ( this.isIgnoreCase )
{
return this.datas.getRow(i_Language.trim().toUpperCase() ,i_TextID.trim());
}
else
{
return this.datas.getRow(i_Language.trim() ,i_TextID.trim());
}
}
else
{
throw new RuntimeException("Language[" + i_Language + "] is not find.");
}
}
/**
* 自动生成对应的文本ID
*
* @return
*/
private synchronized String makeTextId()
{
String v_Language = this.getLanguage();
if ( Help.isNull(v_Language) )
{
throw new NullPointerException("Language is null.");
}
return "I" + StringHelp.lpad(this.datas.get(v_Language).size() + 1 ,6 ,"0");
}
/**
* 添加多国语言文本,并自动生成对应的文本ID
*
* @param i_Text
* @return 返回文本ID
*/
public synchronized String setIText(String i_Text)
{
return this.setIText(this.getLanguage() ,makeTextId() ,i_Text);
}
/**
* 添加多国语言文本
*
* @param i_TextInfo
* @return
*/
public String setIText(Param i_TextInfo)
{
return this.setIText(i_TextInfo.getName() ,i_TextInfo.getValue());
}
/**
* 添加文本ID及其对应的多国语言文本
*
* @param i_TextID
* @param i_Text
* @return 返回文本ID
*/
public String setIText(String i_TextID ,String i_Text)
{
return this.setIText(this.getLanguage() ,i_TextID ,i_Text);
}
/**
* 指定语言,添加文本ID及其对应的多国语言文本
*
* @param i_TextID
* @param i_Text
* @return 返回文本ID
*/
public String setIText(String i_Language ,String i_TextID ,String i_Text)
{
if ( Help.isNull(i_Language) )
{
throw new NullPointerException("Language is null.");
}
if ( Help.isNull(i_TextID) )
{
throw new NullPointerException("Text ID is null.");
}
if ( this.isIgnoreCase )
{
this.datas.putRow(i_Language.trim().toUpperCase() ,i_TextID.trim() ,i_Text);
}
else
{
this.datas.putRow(i_Language.trim() ,i_TextID.trim() ,i_Text);
}
return i_TextID.trim();
}
/**
* 获取当前语言
*
* @return
*/
public String getLanguage()
{
return language;
}
public void setLanguage(String i_Language)
{
if ( this.isIgnoreCase )
{
this.language = i_Language.trim().toUpperCase();
}
else
{
this.language = i_Language.trim();
}
}
/**
* 获取所有语言列表
*
* @return
*/
public List<String> getLanguages()
{
return new ArrayList<String>(this.datas.keySet());
}
public boolean isIgnoreCase()
{
return isIgnoreCase;
}
public void setIgnoreCase(boolean isIgnoreCase)
{
this.isIgnoreCase = isIgnoreCase;
}
}