src/java.base/share/classes/java/io/ByteArrayOutputStream.java
author bpb
Fri, 05 Jan 2018 12:45:52 -0800
changeset 48435 20fe8cd3179d
parent 48252 77b88d8f8380
child 48436 45a9a7a49379
permissions -rw-r--r--
8193861: Typos in API documentation of File.toPath() and InetSocketAddress.getAddress() Reviewed-by: chegar, rriggs, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
     2
 * Copyright (c) 1994, 2017, 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: 5466
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: 5466
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: 5466
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
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
package java.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    28
import java.nio.charset.Charset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * This class implements an output stream in which the data is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * written into a byte array. The buffer automatically grows as data
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * is written to it.
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
    35
 * The data can be retrieved using {@code toByteArray()} and
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
    36
 * {@code toString()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
    38
 * Closing a {@code ByteArrayOutputStream} has no effect. The methods in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * this class can be called after the stream has been closed without
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
    40
 * generating an {@code IOException}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author  Arthur van Hoff
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
    43
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public class ByteArrayOutputStream extends OutputStream {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * The buffer where data is stored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    protected byte buf[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * The number of valid bytes in the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    protected int count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * Creates a new byte array output stream. The buffer capacity is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * initially 32 bytes, though its size increases if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public ByteArrayOutputStream() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        this(32);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * Creates a new byte array output stream, with a buffer capacity of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * the specified size, in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * @param   size   the initial size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @exception  IllegalArgumentException if size is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public ByteArrayOutputStream(int size) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        if (size < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            throw new IllegalArgumentException("Negative initial size: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                                               + size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        buf = new byte[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /**
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    82
     * Increases the capacity if necessary to ensure that it can hold
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    83
     * at least the number of elements specified by the minimum
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    84
     * capacity argument.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    85
     *
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    86
     * @param minCapacity the desired minimum capacity
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    87
     * @throws OutOfMemoryError if {@code minCapacity < 0}.  This is
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    88
     * interpreted as a request for the unsatisfiably large capacity
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    89
     * {@code (long) Integer.MAX_VALUE + (minCapacity - Integer.MAX_VALUE)}.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    90
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    91
    private void ensureCapacity(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    92
        // overflow-conscious code
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    93
        if (minCapacity - buf.length > 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    94
            grow(minCapacity);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    95
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    96
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
    97
    /**
26217
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
    98
     * The maximum size of array to allocate.
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
    99
     * Some VMs reserve some header words in an array.
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   100
     * Attempts to allocate larger arrays may result in
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   101
     * OutOfMemoryError: Requested array size exceeds VM limit
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   102
     */
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   103
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   104
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   105
    /**
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   106
     * Increases the capacity to ensure that it can hold at least the
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   107
     * number of elements specified by the minimum capacity argument.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   108
     *
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   109
     * @param minCapacity the desired minimum capacity
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   110
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   111
    private void grow(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   112
        // overflow-conscious code
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   113
        int oldCapacity = buf.length;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   114
        int newCapacity = oldCapacity << 1;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   115
        if (newCapacity - minCapacity < 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   116
            newCapacity = minCapacity;
26217
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   117
        if (newCapacity - MAX_ARRAY_SIZE > 0)
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   118
            newCapacity = hugeCapacity(minCapacity);
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   119
        buf = Arrays.copyOf(buf, newCapacity);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   120
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   121
26217
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   122
    private static int hugeCapacity(int minCapacity) {
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   123
        if (minCapacity < 0) // overflow
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   124
            throw new OutOfMemoryError();
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   125
        return (minCapacity > MAX_ARRAY_SIZE) ?
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   126
            Integer.MAX_VALUE :
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   127
            MAX_ARRAY_SIZE;
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   128
    }
e037c9104788 8055949: ByteArrayOutputStream capacity should be maximal array size permitted by VM
martin
parents: 25859
diff changeset
   129
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   130
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Writes the specified byte to this byte array output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param   b   the byte to be written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    public synchronized void write(int b) {
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   136
        ensureCapacity(count + 1);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   137
        buf[count] = (byte) b;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   138
        count += 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   142
     * Writes {@code len} bytes from the specified byte array
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   143
     * starting at offset {@code off} to this byte array output stream.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param   b     the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param   off   the start offset in the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param   len   the number of bytes to write.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    public synchronized void write(byte b[], int off, int len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if ((off < 0) || (off > b.length) || (len < 0) ||
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   151
            ((off + len) - b.length > 0)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        }
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   154
        ensureCapacity(count + len);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        System.arraycopy(b, off, buf, count, len);
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   156
        count += len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Writes the complete contents of this byte array output stream to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * the specified output stream argument, as if by calling the output
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   162
     * stream's write method using {@code out.write(buf, 0, count)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @param      out   the output stream to which to write the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public synchronized void writeTo(OutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        out.write(buf, 0, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   172
     * Resets the {@code count} field of this byte array output
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * stream to zero, so that all currently accumulated output in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * output stream is discarded. The output stream can be used again,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * reusing the already allocated buffer space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @see     java.io.ByteArrayInputStream#count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public synchronized void reset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Creates a newly allocated byte array. Its size is the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * size of this output stream and the valid contents of the buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * have been copied into it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @return  the current contents of this output stream, as a byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @see     java.io.ByteArrayOutputStream#size()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 32033
diff changeset
   191
    public synchronized byte[] toByteArray() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return Arrays.copyOf(buf, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Returns the current size of the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   198
     * @return  the value of the {@code count} field, which is the number
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *          of valid bytes in this output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @see     java.io.ByteArrayOutputStream#count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public synchronized int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        return count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * Converts the buffer's contents into a string decoding bytes using the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   208
     * platform's default character set. The length of the new {@code String}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * is a function of the character set, and hence may not be equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * size of the buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <p> This method always replaces malformed-input and unmappable-character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * sequences with the default replacement string for the platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * default character set. The {@linkplain java.nio.charset.CharsetDecoder}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * class should be used when more control over the decoding process is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @return String decoded from the buffer's contents.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   219
     * @since  1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    public synchronized String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        return new String(buf, 0, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * Converts the buffer's contents into a string by decoding the bytes using
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   227
     * the named {@link java.nio.charset.Charset charset}.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   228
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   229
     * <p> This method is equivalent to {@code #toString(charset)} that takes a
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   230
     * {@link java.nio.charset.Charset charset}.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   231
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   232
     * <p> An invocation of this method of the form
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   234
     * <pre> {@code
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   235
     *      ByteArrayOutputStream b = ...
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   236
     *      b.toString("UTF-8")
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   237
     *      }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   238
     * </pre>
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   239
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   240
     * behaves in exactly the same way as the expression
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   241
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   242
     * <pre> {@code
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   243
     *      ByteArrayOutputStream b = ...
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   244
     *      b.toString(StandardCharsets.UTF_8)
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   245
     *      }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   246
     * </pre>
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   247
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
13659
18f4e55bb34b 7193710: ByteArrayOutputStream Javadoc contains unclosed <code> element
dxu
parents: 7668
diff changeset
   249
     * @param      charsetName  the name of a supported
18f4e55bb34b 7193710: ByteArrayOutputStream Javadoc contains unclosed <code> element
dxu
parents: 7668
diff changeset
   250
     *             {@link java.nio.charset.Charset charset}
18f4e55bb34b 7193710: ByteArrayOutputStream Javadoc contains unclosed <code> element
dxu
parents: 7668
diff changeset
   251
     * @return     String decoded from the buffer's contents.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @exception  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *             If the named charset is not supported
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   254
     * @since      1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public synchronized String toString(String charsetName)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        throws UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        return new String(buf, 0, count, charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    /**
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   263
     * Converts the buffer's contents into a string by decoding the bytes using
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   264
     * the specified {@link java.nio.charset.Charset charset}. The length of the new
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   265
     * {@code String} is a function of the charset, and hence may not be equal
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   266
     * to the length of the byte array.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   267
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   268
     * <p> This method always replaces malformed-input and unmappable-character
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   269
     * sequences with the charset's default replacement string. The {@link
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   270
     * java.nio.charset.CharsetDecoder} class should be used when more control
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   271
     * over the decoding process is required.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   272
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   273
     * @param      charset  the {@linkplain java.nio.charset.Charset charset}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   274
     *             to be used to decode the {@code bytes}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   275
     * @return     String decoded from the buffer's contents.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   276
     * @since      10
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   277
     */
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   278
    public synchronized String toString(Charset charset) {
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   279
        return new String(buf, 0, count, charset);
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   280
    }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   281
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   282
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Creates a newly allocated string. Its size is the current size of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * the output stream and the valid contents of the buffer have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * copied into it. Each character <i>c</i> in the resulting string is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * constructed from the corresponding element <i>b</i> in the byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * array such that:
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   288
     * <blockquote><pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   289
     *     c == (char)(((hibyte & 0xff) << 8) | (b & 0xff))
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   290
     * }</pre></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @deprecated This method does not properly convert bytes into characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * As of JDK&nbsp;1.1, the preferred way to do this is via the
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   294
     * {@link #toString(String charsetName)} or {@link #toString(Charset charset)}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   295
     * method, which takes an encoding-name or charset argument,
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   296
     * or the {@code toString()} method, which uses the platform's default
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   297
     * character encoding.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * @param      hibyte    the high byte of each resulting Unicode character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @return     the current contents of the output stream, as a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @see        java.io.ByteArrayOutputStream#size()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @see        java.io.ByteArrayOutputStream#toString(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @see        java.io.ByteArrayOutputStream#toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    public synchronized String toString(int hibyte) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return new String(buf, hibyte, 0, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   311
     * Closing a {@code ByteArrayOutputStream} has no effect. The methods in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * this class can be called after the stream has been closed without
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 26217
diff changeset
   313
     * generating an {@code IOException}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
}