jdk/src/java.base/share/classes/java/util/PropertyResourceBundle.java
author chegar
Tue, 07 Apr 2015 10:33:08 +0100
changeset 29816 43ad6bf3975b
parent 25859 3317bb8137f4
child 31902 1c90f9a5a76d
permissions -rw-r--r--
8076442: Cannot fully read BitSet.stream() if bit Integer.MAX_VALUE is set Reviewed-by: alanb, henryjen
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21949
diff changeset
     2
 * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * The original version of this source code and documentation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * is copyrighted and owned by Taligent, Inc., a wholly-owned
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * subsidiary of IBM. These materials are provided under terms
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * of a License Agreement between Taligent and Sun. This technology
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * is protected by multiple US and International patents.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * This notice and attribution to Taligent may not be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Taligent is a registered trademark of Taligent, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.io.Reader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import sun.util.ResourceBundleEnumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <code>PropertyResourceBundle</code> is a concrete subclass of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <code>ResourceBundle</code> that manages resources for a locale
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * using a set of static strings from a property file. See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * {@link ResourceBundle ResourceBundle} for more information about resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * bundles.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * Unlike other types of resource bundle, you don't subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <code>PropertyResourceBundle</code>.  Instead, you supply properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * files containing the resource data.  <code>ResourceBundle.getBundle</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * will automatically look for the appropriate properties file and create a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <code>PropertyResourceBundle</code> that refers to it. See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * {@link ResourceBundle#getBundle(java.lang.String, java.util.Locale, java.lang.ClassLoader) ResourceBundle.getBundle}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * for a complete description of the search and instantiation strategy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * The following <a name="sample">example</a> shows a member of a resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * bundle family with the base name "MyResources".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * The text defines the bundle "MyResources_de",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * the German member of the bundle family.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * This member is based on <code>PropertyResourceBundle</code>, and the text
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * therefore is the content of the file "MyResources_de.properties"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * (a related <a href="ListResourceBundle.html#sample">example</a> shows
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * how you can add bundles to this family that are implemented as subclasses
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * of <code>ListResourceBundle</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * The keys in this example are of the form "s1" etc. The actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * keys are entirely up to your choice, so long as they are the same as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * the keys you use in your program to retrieve the objects from the bundle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * Keys are case-sensitive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * # MessageFormat pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * s1=Die Platte \"{1}\" enth&auml;lt {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * # location of {0} in pattern
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * s2=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * # sample disk name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * s3=Meine Platte
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * # first ChoiceFormat choice
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * s4=keine Dateien
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * # second ChoiceFormat choice
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * s5=eine Datei
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * # third ChoiceFormat choice
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * s6={0,number} Dateien
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * # sample date
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * s7=3. M&auml;rz 1996
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * <p>
21949
d97fd8123cbe 8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents: 17724
diff changeset
   103
 * 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
   104
 * 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
   105
 * 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
   106
 *
d97fd8123cbe 8028368: There is no description whether or not java.util.ResourceBundle is thread-safe
naoto
parents: 17724
diff changeset
   107
 * <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * <strong>Note:</strong> PropertyResourceBundle can be constructed either
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * from an InputStream or a Reader, which represents a property file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * Constructing a PropertyResourceBundle instance from an InputStream requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * that the input stream be encoded in ISO-8859-1.  In that case, characters
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   112
 * that cannot be represented in ISO-8859-1 encoding must be represented by Unicode Escapes
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   113
 * as defined in section 3.3 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 5506
diff changeset
   114
 * <cite>The Java&trade; Language Specification</cite>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * whereas the other constructor which takes a Reader does not have that limitation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * @see ResourceBundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * @see ListResourceBundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * @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
   120
 * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
public class PropertyResourceBundle extends ResourceBundle {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Creates a property resource bundle from an {@link java.io.InputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * InputStream}.  The property file read with this constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * must be encoded in ISO-8859-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param stream an InputStream that represents a property file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     *        to read from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @throws IOException if an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @throws NullPointerException if <code>stream</code> is null
17724
3d31ab54bbc5 6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents: 13795
diff changeset
   132
     * @throws IllegalArgumentException if {@code stream} contains a
3d31ab54bbc5 6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents: 13795
diff changeset
   133
     *     malformed Unicode escape sequence.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 9266
diff changeset
   135
    @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public PropertyResourceBundle (InputStream stream) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        Properties properties = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        properties.load(stream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        lookup = new HashMap(properties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Creates a property resource bundle from a {@link java.io.Reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Reader}.  Unlike the constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * {@link #PropertyResourceBundle(java.io.InputStream) PropertyResourceBundle(InputStream)},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * there is no limitation as to the encoding of the input property file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @param reader a Reader that represents a property file to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *        read from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @throws IOException if an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @throws NullPointerException if <code>reader</code> is null
17724
3d31ab54bbc5 6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents: 13795
diff changeset
   152
     * @throws IllegalArgumentException if a malformed Unicode escape sequence appears
3d31ab54bbc5 6251788: (rb) PropertyResourceBundle doesn't document exceptions
naoto
parents: 13795
diff changeset
   153
     *     from {@code reader}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 9266
diff changeset
   156
    @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    public PropertyResourceBundle (Reader reader) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        Properties properties = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        properties.load(reader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        lookup = new HashMap(properties);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public Object handleGetObject(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return lookup.get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Returns an <code>Enumeration</code> of the keys contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * this <code>ResourceBundle</code> and its parent bundles.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @return an <code>Enumeration</code> of the keys contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *         this <code>ResourceBundle</code> and its parent bundles.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @see #keySet()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public Enumeration<String> getKeys() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        ResourceBundle parent = this.parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        return new ResourceBundleEnumeration(lookup.keySet(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                (parent != null) ? parent.getKeys() : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * Returns a <code>Set</code> of the keys contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * <em>only</em> in this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @return a <code>Set</code> of the keys contained only in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *         <code>ResourceBundle</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * @see #keySet()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    protected Set<String> handleKeySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        return lookup.keySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    // ==================privates====================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    private Map<String,Object> lookup;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
}