src/java.base/share/classes/java/io/OutputStreamWriter.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58288 48e480e56aad
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
     2
 * Copyright (c) 1996, 2019, 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
package java.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
34390
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
    28
import java.nio.CharBuffer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.nio.charset.Charset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.charset.CharsetEncoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.nio.cs.StreamEncoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * An OutputStreamWriter is a bridge from character streams to byte streams:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Characters written to it are encoded into bytes using a specified {@link
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 5506
diff changeset
    37
 * java.nio.charset.Charset charset}.  The charset that it uses
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * may be specified by name or may be given explicitly, or the platform's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * default charset may be accepted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p> Each invocation of a write() method causes the encoding converter to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * invoked on the given character(s).  The resulting bytes are accumulated in a
45030
e89631bcf030 8179662: OutputStreamWriter javadocs states that you can set the buffer size but there is no way to do that
bpb
parents: 40410
diff changeset
    43
 * buffer before being written to the underlying output stream.  Note that the
e89631bcf030 8179662: OutputStreamWriter javadocs states that you can set the buffer size but there is no way to do that
bpb
parents: 40410
diff changeset
    44
 * characters passed to the write() methods are not buffered.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p> For top efficiency, consider wrapping an OutputStreamWriter within a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * BufferedWriter so as to avoid frequent converter invocations.  For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * Writer out
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *   = new BufferedWriter(new OutputStreamWriter(System.out));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p> A <i>surrogate pair</i> is a character represented by a sequence of two
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    55
 * {@code char} values: A <i>high</i> surrogate in the range '&#92;uD800' to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * '&#92;uDBFF' followed by a <i>low</i> surrogate in the range '&#92;uDC00' to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * '&#92;uDFFF'.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p> A <i>malformed surrogate element</i> is a high surrogate that is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * followed by a low surrogate or a low surrogate that is not preceded by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * high surrogate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p> This class always replaces malformed surrogate elements and unmappable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * character sequences with the charset's default <i>substitution sequence</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * The {@linkplain java.nio.charset.CharsetEncoder} class should be used when more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * control over the encoding process is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * @see BufferedWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * @see OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @see java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * @author      Mark Reinhold
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 18786
diff changeset
    73
 * @since       1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
public class OutputStreamWriter extends Writer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private final StreamEncoder se;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * Creates an OutputStreamWriter that uses the named charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param  out
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *         An OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @param  charsetName
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *         The name of a supported
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 5506
diff changeset
    88
     *         {@link java.nio.charset.Charset charset}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    90
     * @throws     UnsupportedEncodingException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *             If the named encoding is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public OutputStreamWriter(OutputStream out, String charsetName)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        throws UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        super(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        if (charsetName == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            throw new NullPointerException("charsetName");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        se = StreamEncoder.forOutputStreamWriter(out, this, charsetName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Creates an OutputStreamWriter that uses the default character encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @param  out  An OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public OutputStreamWriter(OutputStream out) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        super(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            se = StreamEncoder.forOutputStreamWriter(out, this, (String)null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        } catch (UnsupportedEncodingException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            throw new Error(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 5506
diff changeset
   117
     * Creates an OutputStreamWriter that uses the given charset.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param  out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *         An OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param  cs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *         A charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    public OutputStreamWriter(OutputStream out, Charset cs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        super(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        if (cs == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            throw new NullPointerException("charset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        se = StreamEncoder.forOutputStreamWriter(out, this, cs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 5506
diff changeset
   136
     * Creates an OutputStreamWriter that uses the given charset encoder.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param  out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *         An OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @param  enc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *         A charset encoder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    public OutputStreamWriter(OutputStream out, CharsetEncoder enc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        super(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        if (enc == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            throw new NullPointerException("charset encoder");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        se = StreamEncoder.forOutputStreamWriter(out, this, enc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Returns the name of the character encoding being used by this stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * <p> If the encoding has an historical name then that name is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * otherwise the encoding's canonical name is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * <p> If this instance was created with the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * #OutputStreamWriter(OutputStream, String)} constructor then the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * name, being unique for the encoding, may differ from the name passed to
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   163
     * the constructor.  This method may return {@code null} if the stream has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * been closed. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @return The historical name of this encoding, or possibly
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   167
     *         {@code null} if the stream has been closed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @see java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public String getEncoding() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return se.getEncoding();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Flushes the output buffer to the underlying byte stream, without flushing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * the byte stream itself.  This method is non-private only so that it may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * be invoked by PrintStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    void flushBuffer() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        se.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * Writes a single character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   190
     * @throws     IOException  If an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    public void write(int c) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        se.write(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Writes a portion of an array of characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param  cbuf  Buffer of characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @param  off   Offset from which to start writing characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @param  len   Number of characters to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *
38373
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   203
     * @throws  IndexOutOfBoundsException
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   204
     *          If {@code off} is negative, or {@code len} is negative,
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   205
     *          or {@code off + len} is negative or greater than the length
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   206
     *          of the given array
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   207
     *
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   208
     * @throws  IOException  If an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    public void write(char cbuf[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        se.write(cbuf, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * Writes a portion of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param  str  A String
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @param  off  Offset from which to start writing characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @param  len  Number of characters to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
38373
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   221
     * @throws  IndexOutOfBoundsException
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   222
     *          If {@code off} is negative, or {@code len} is negative,
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   223
     *          or {@code off + len} is negative or greater than the length
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   224
     *          of the given string
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   225
     *
21f4f5eee7cc 8130679: Writer/StringWriter.write methods do not specify index out bounds
bpb
parents: 34390
diff changeset
   226
     * @throws  IOException  If an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public void write(String str, int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        se.write(str, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
34390
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   232
    @Override
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   233
    public Writer append(CharSequence csq, int start, int end) throws IOException {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38373
diff changeset
   234
        if (csq == null) csq = "null";
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38373
diff changeset
   235
        return append(csq.subSequence(start, end));
34390
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   236
    }
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   237
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   238
    @Override
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   239
    public Writer append(CharSequence csq) throws IOException {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38373
diff changeset
   240
        if (csq instanceof CharBuffer) {
34390
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   241
            se.write((CharBuffer) csq);
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   242
        } else {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38373
diff changeset
   243
            se.write(String.valueOf(csq));
34390
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   244
        }
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   245
        return this;
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   246
    }
feb9879cd993 6856817: Poor performance of Writer#append with CharBuffer
vtewari
parents: 32033
diff changeset
   247
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * Flushes the stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   251
     * @throws     IOException  If an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public void flush() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        se.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        se.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
}