author | redestad |
Thu, 21 Apr 2016 13:39:53 +0200 | |
changeset 37593 | 824750ada3d6 |
parent 31902 | 1c90f9a5a76d |
child 37781 | 71ed5645f17c |
permissions | -rw-r--r-- |
2 | 1 |
/* |
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
2 |
* Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
/* |
|
27 |
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved |
|
28 |
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved |
|
29 |
* |
|
30 |
* The original version of this source code and documentation |
|
31 |
* is copyrighted and owned by Taligent, Inc., a wholly-owned |
|
32 |
* subsidiary of IBM. These materials are provided under terms |
|
33 |
* of a License Agreement between Taligent and Sun. This technology |
|
34 |
* is protected by multiple US and International patents. |
|
35 |
* |
|
36 |
* This notice and attribution to Taligent may not be removed. |
|
37 |
* Taligent is a registered trademark of Taligent, Inc. |
|
38 |
*/ |
|
39 |
||
40 |
package java.util; |
|
41 |
||
42 |
import java.io.InputStream; |
|
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
43 |
import java.io.InputStreamReader; |
2 | 44 |
import java.io.Reader; |
45 |
import java.io.IOException; |
|
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
46 |
import java.nio.charset.MalformedInputException; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
47 |
import java.nio.charset.StandardCharsets; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
48 |
import java.nio.charset.UnmappableCharacterException; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
49 |
import java.security.AccessController; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
50 |
import java.util.Locale; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
51 |
import sun.security.action.GetPropertyAction; |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
52 |
import sun.util.PropertyResourceBundleCharset; |
2 | 53 |
import sun.util.ResourceBundleEnumeration; |
54 |
||
55 |
/** |
|
56 |
* <code>PropertyResourceBundle</code> is a concrete subclass of |
|
57 |
* <code>ResourceBundle</code> that manages resources for a locale |
|
58 |
* using a set of static strings from a property file. See |
|
59 |
* {@link ResourceBundle ResourceBundle} for more information about resource |
|
60 |
* bundles. |
|
61 |
* |
|
62 |
* <p> |
|
63 |
* Unlike other types of resource bundle, you don't subclass |
|
64 |
* <code>PropertyResourceBundle</code>. Instead, you supply properties |
|
65 |
* files containing the resource data. <code>ResourceBundle.getBundle</code> |
|
66 |
* will automatically look for the appropriate properties file and create a |
|
67 |
* <code>PropertyResourceBundle</code> that refers to it. See |
|
68 |
* {@link ResourceBundle#getBundle(java.lang.String, java.util.Locale, java.lang.ClassLoader) ResourceBundle.getBundle} |
|
69 |
* for a complete description of the search and instantiation strategy. |
|
70 |
* |
|
71 |
* <p> |
|
72 |
* The following <a name="sample">example</a> shows a member of a resource |
|
73 |
* bundle family with the base name "MyResources". |
|
74 |
* The text defines the bundle "MyResources_de", |
|
75 |
* the German member of the bundle family. |
|
76 |
* This member is based on <code>PropertyResourceBundle</code>, and the text |
|
77 |
* therefore is the content of the file "MyResources_de.properties" |
|
78 |
* (a related <a href="ListResourceBundle.html#sample">example</a> shows |
|
79 |
* how you can add bundles to this family that are implemented as subclasses |
|
80 |
* of <code>ListResourceBundle</code>). |
|
81 |
* The keys in this example are of the form "s1" etc. The actual |
|
82 |
* keys are entirely up to your choice, so long as they are the same as |
|
83 |
* the keys you use in your program to retrieve the objects from the bundle. |
|
84 |
* Keys are case-sensitive. |
|
85 |
* <blockquote> |
|
86 |
* <pre> |
|
87 |
* # MessageFormat pattern |
|
88 |
* s1=Die Platte \"{1}\" enthält {0}. |
|
89 |
* |
|
90 |
* # location of {0} in pattern |
|
91 |
* s2=1 |
|
92 |
* |
|
93 |
* # sample disk name |
|
94 |
* s3=Meine Platte |
|
95 |
* |
|
96 |
* # first ChoiceFormat choice |
|
97 |
* s4=keine Dateien |
|
98 |
* |
|
99 |
* # second ChoiceFormat choice |
|
100 |
* s5=eine Datei |
|
101 |
* |
|
102 |
* # third ChoiceFormat choice |
|
103 |
* s6={0,number} Dateien |
|
104 |
* |
|
105 |
* # sample date |
|
106 |
* s7=3. März 1996 |
|
107 |
* </pre> |
|
108 |
* </blockquote> |
|
109 |
* |
|
110 |
* <p> |
|
21949
d97fd8123cbe
8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents:
17724
diff
changeset
|
111 |
* The implementation of a {@code PropertyResourceBundle} subclass must be |
d97fd8123cbe
8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents:
17724
diff
changeset
|
112 |
* thread-safe if it's simultaneously used by multiple threads. The default |
d97fd8123cbe
8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents:
17724
diff
changeset
|
113 |
* implementations of the non-abstract methods in this class are thread-safe. |
d97fd8123cbe
8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents:
17724
diff
changeset
|
114 |
* |
d97fd8123cbe
8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents:
17724
diff
changeset
|
115 |
* <p> |
2 | 116 |
* <strong>Note:</strong> PropertyResourceBundle can be constructed either |
117 |
* from an InputStream or a Reader, which represents a property file. |
|
118 |
* Constructing a PropertyResourceBundle instance from an InputStream requires |
|
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
119 |
* that the input stream be encoded in UTF-8. By default, if a |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
120 |
* {@link java.nio.charset.MalformedInputException} or an |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
121 |
* {@link java.nio.charset.UnmappableCharacterException} occurs on reading the |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
122 |
* input stream, then the PropertyResourceBundle instance resets to the state |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
123 |
* before the exception, re-reads the input stream in {@code ISO-8859-1}, and |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
124 |
* continues reading. If the system property |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
125 |
* {@code java.util.PropertyResourceBundle.encoding} is set to either |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
126 |
* "ISO-8859-1" or "UTF-8", the input stream is solely read in that encoding, |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
127 |
* and throws the exception if it encounters an invalid sequence. |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
128 |
* If "ISO-8859-1" is specified, characters that cannot be represented in |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
129 |
* ISO-8859-1 encoding must be represented by Unicode Escapes as defined in section |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
130 |
* 3.3 of <cite>The Java™ Language Specification</cite> |
2 | 131 |
* whereas the other constructor which takes a Reader does not have that limitation. |
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
132 |
* Other encoding values are ignored for this system property. |
2 | 133 |
* |
134 |
* @see ResourceBundle |
|
135 |
* @see ListResourceBundle |
|
136 |
* @see Properties |
|
24865
09b1d992ca72
8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents:
23010
diff
changeset
|
137 |
* @since 1.1 |
2 | 138 |
*/ |
139 |
public class PropertyResourceBundle extends ResourceBundle { |
|
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
140 |
|
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
141 |
// Check whether the strict encoding is specified. |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
142 |
// The possible encoding is either "ISO-8859-1" or "UTF-8". |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
143 |
private static final String encoding = |
37593
824750ada3d6
8154231: Simplify access to System properties from JDK code
redestad
parents:
31902
diff
changeset
|
144 |
GetPropertyAction |
824750ada3d6
8154231: Simplify access to System properties from JDK code
redestad
parents:
31902
diff
changeset
|
145 |
.getProperty("java.util.PropertyResourceBundle.encoding", "") |
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
146 |
.toUpperCase(Locale.ROOT); |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
147 |
|
2 | 148 |
/** |
149 |
* Creates a property resource bundle from an {@link java.io.InputStream |
|
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
150 |
* InputStream}. This constructor reads the property file in UTF-8 by default. |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
151 |
* If a {@link java.nio.charset.MalformedInputException} or an |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
152 |
* {@link java.nio.charset.UnmappableCharacterException} occurs on reading the |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
153 |
* input stream, then the PropertyResourceBundle instance resets to the state |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
154 |
* before the exception, re-reads the input stream in {@code ISO-8859-1} and |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
155 |
* continues reading. If the system property |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
156 |
* {@code java.util.PropertyResourceBundle.encoding} is set to either |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
157 |
* "ISO-8859-1" or "UTF-8", the input stream is solely read in that encoding, |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
158 |
* and throws the exception if it encounters an invalid sequence. Other |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
159 |
* encoding values are ignored for this system property. |
2 | 160 |
* |
161 |
* @param stream an InputStream that represents a property file |
|
162 |
* to read from. |
|
163 |
* @throws IOException if an I/O error occurs |
|
164 |
* @throws NullPointerException if <code>stream</code> is null |
|
17724
3d31ab54bbc5
6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents:
13795
diff
changeset
|
165 |
* @throws IllegalArgumentException if {@code stream} contains a |
3d31ab54bbc5
6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents:
13795
diff
changeset
|
166 |
* malformed Unicode escape sequence. |
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
167 |
* @throws MalformedInputException if the system property |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
168 |
* {@code java.util.PropertyResourceBundle.encoding} is set to "UTF-8" |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
169 |
* and {@code stream} contains an invalid UTF-8 byte sequence. |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
170 |
* @throws UnmappableCharacterException if the system property |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
171 |
* {@code java.util.PropertyResourceBundle.encoding} is set to "UTF-8" |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
172 |
* and {@code stream} contains an unmappable UTF-8 byte sequence. |
2 | 173 |
*/ |
13795
73850c397272
7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents:
9266
diff
changeset
|
174 |
@SuppressWarnings({"unchecked", "rawtypes"}) |
2 | 175 |
public PropertyResourceBundle (InputStream stream) throws IOException { |
31902
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
176 |
this(new InputStreamReader(stream, |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
177 |
"ISO-8859-1".equals(encoding) ? |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
178 |
StandardCharsets.ISO_8859_1.newDecoder() : |
1c90f9a5a76d
8027607: (rb) Provide UTF-8 based properties resource bundles
naoto
parents:
25859
diff
changeset
|
179 |
new PropertyResourceBundleCharset("UTF-8".equals(encoding)).newDecoder())); |
2 | 180 |
} |
181 |
||
182 |
/** |
|
183 |
* Creates a property resource bundle from a {@link java.io.Reader |
|
184 |
* Reader}. Unlike the constructor |
|
185 |
* {@link #PropertyResourceBundle(java.io.InputStream) PropertyResourceBundle(InputStream)}, |
|
186 |
* there is no limitation as to the encoding of the input property file. |
|
187 |
* |
|
188 |
* @param reader a Reader that represents a property file to |
|
189 |
* read from. |
|
190 |
* @throws IOException if an I/O error occurs |
|
191 |
* @throws NullPointerException if <code>reader</code> is null |
|
17724
3d31ab54bbc5
6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents:
13795
diff
changeset
|
192 |
* @throws IllegalArgumentException if a malformed Unicode escape sequence appears |
3d31ab54bbc5
6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents:
13795
diff
changeset
|
193 |
* from {@code reader}. |
2 | 194 |
* @since 1.6 |
195 |
*/ |
|
13795
73850c397272
7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents:
9266
diff
changeset
|
196 |
@SuppressWarnings({"unchecked", "rawtypes"}) |
2 | 197 |
public PropertyResourceBundle (Reader reader) throws IOException { |
198 |
Properties properties = new Properties(); |
|
199 |
properties.load(reader); |
|
200 |
lookup = new HashMap(properties); |
|
201 |
} |
|
202 |
||
203 |
// Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification. |
|
204 |
public Object handleGetObject(String key) { |
|
205 |
if (key == null) { |
|
206 |
throw new NullPointerException(); |
|
207 |
} |
|
208 |
return lookup.get(key); |
|
209 |
} |
|
210 |
||
211 |
/** |
|
212 |
* Returns an <code>Enumeration</code> of the keys contained in |
|
213 |
* this <code>ResourceBundle</code> and its parent bundles. |
|
214 |
* |
|
215 |
* @return an <code>Enumeration</code> of the keys contained in |
|
216 |
* this <code>ResourceBundle</code> and its parent bundles. |
|
217 |
* @see #keySet() |
|
218 |
*/ |
|
219 |
public Enumeration<String> getKeys() { |
|
220 |
ResourceBundle parent = this.parent; |
|
221 |
return new ResourceBundleEnumeration(lookup.keySet(), |
|
222 |
(parent != null) ? parent.getKeys() : null); |
|
223 |
} |
|
224 |
||
225 |
/** |
|
226 |
* Returns a <code>Set</code> of the keys contained |
|
227 |
* <em>only</em> in this <code>ResourceBundle</code>. |
|
228 |
* |
|
229 |
* @return a <code>Set</code> of the keys contained only in this |
|
230 |
* <code>ResourceBundle</code> |
|
231 |
* @since 1.6 |
|
232 |
* @see #keySet() |
|
233 |
*/ |
|
234 |
protected Set<String> handleKeySet() { |
|
235 |
return lookup.keySet(); |
|
236 |
} |
|
237 |
||
238 |
// ==================privates==================== |
|
239 |
||
240 |
private Map<String,Object> lookup; |
|
241 |
} |