src/java.base/share/classes/java/io/PrintStream.java
author redestad
Fri, 04 Jan 2019 20:58:35 +0100
changeset 53148 17d568776429
parent 48252 77b88d8f8380
child 55727 070ffafc4294
child 58678 9cf78a70fa4f
permissions -rw-r--r--
8215412: Optimize PrintStream.println methods Reviewed-by: rriggs, dfuchs, forax
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) 1996, 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: 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Formatter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Locale;
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    30
import java.nio.charset.Charset;
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    31
import java.nio.charset.IllegalCharsetNameException;
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    32
import java.nio.charset.UnsupportedCharsetException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    35
 * A {@code PrintStream} adds functionality to another output stream,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * namely the ability to print representations of various data values
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * conveniently.  Two other features are provided as well.  Unlike other output
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    38
 * streams, a {@code PrintStream} never throws an
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    39
 * {@code IOException}; instead, exceptional situations merely set an
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    40
 * internal flag that can be tested via the {@code checkError} method.
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    41
 * Optionally, a {@code PrintStream} can be created so as to flush
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    42
 * automatically; this means that the {@code flush} method is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * automatically invoked after a byte array is written, one of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    44
 * {@code println} methods is invoked, or a newline character or byte
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    45
 * ({@code '\n'}) is written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    47
 * <p> All characters printed by a {@code PrintStream} are converted into
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    48
 * bytes using the given encoding or charset, or platform's default character
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    49
 * encoding if not specified.
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    50
 * The {@link PrintWriter} class should be used in situations that require
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    51
 *  writing characters rather than bytes.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    53
 * <p> This class always replaces malformed and unmappable character sequences with
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    54
 * the charset's default replacement string.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    55
 * The {@linkplain java.nio.charset.CharsetEncoder} class should be used when more
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    56
 * control over the encoding process is required.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
    57
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @author     Frank Yellin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @author     Mark Reinhold
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
    60
 * @since      1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
public class PrintStream extends FilterOutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    implements Appendable, Closeable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    67
    private final boolean autoFlush;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private boolean trouble = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private Formatter formatter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Track both the text- and character-output streams, so that their buffers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * can be flushed without flushing the entire stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private BufferedWriter textOut;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private OutputStreamWriter charOut;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 7982
diff changeset
    79
     * requireNonNull is explicitly declared here so as not to create an extra
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 7982
diff changeset
    80
     * dependency on java.util.Objects.requireNonNull. PrintStream is loaded
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    81
     * early during system initialization.
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    82
     */
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 7982
diff changeset
    83
    private static <T> T requireNonNull(T obj, String message) {
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    84
        if (obj == null)
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    85
            throw new NullPointerException(message);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    86
        return obj;
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    87
    }
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    88
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    89
    /**
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    90
     * Returns a charset object for the given charset name.
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    91
     * @throws NullPointerException          is csn is null
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    92
     * @throws UnsupportedEncodingException  if the charset is not supported
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    93
     */
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    94
    private static Charset toCharset(String csn)
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    95
        throws UnsupportedEncodingException
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    96
    {
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 7982
diff changeset
    97
        requireNonNull(csn, "charsetName");
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    98
        try {
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
    99
            return Charset.forName(csn);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   100
        } catch (IllegalCharsetNameException|UnsupportedCharsetException unused) {
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   101
            // UnsupportedEncodingException should be thrown
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   102
            throw new UnsupportedEncodingException(csn);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   103
        }
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   104
    }
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   105
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   106
    /* Private constructors */
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   107
    private PrintStream(boolean autoFlush, OutputStream out) {
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   108
        super(out);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   109
        this.autoFlush = autoFlush;
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   110
        this.charOut = new OutputStreamWriter(this);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   111
        this.textOut = new BufferedWriter(charOut);
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   112
    }
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   113
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   114
    /* Variant of the private constructor so that the given charset name
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   115
     * can be verified before evaluating the OutputStream argument. Used
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   116
     * by constructors creating a FileOutputStream that also take a
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   117
     * charset name.
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   118
     */
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   119
    private PrintStream(boolean autoFlush, Charset charset, OutputStream out) {
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   120
        this(out, autoFlush, charset);
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   121
    }
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   122
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   123
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Creates a new print stream.  This stream will not flush automatically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @param  out        The output stream to which values and objects will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *                    printed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @see java.io.PrintWriter#PrintWriter(java.io.OutputStream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public PrintStream(OutputStream out) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        this(out, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Creates a new print stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param  out        The output stream to which values and objects will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *                    printed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param  autoFlush  A boolean; if true, the output buffer will be flushed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *                    whenever a byte array is written, one of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   142
     *                    {@code println} methods is invoked, or a newline
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   143
     *                    character or byte ({@code '\n'}) is written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @see java.io.PrintWriter#PrintWriter(java.io.OutputStream, boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    public PrintStream(OutputStream out, boolean autoFlush) {
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 7982
diff changeset
   148
        this(autoFlush, requireNonNull(out, "Null output stream"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * Creates a new print stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @param  out        The output stream to which values and objects will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *                    printed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @param  autoFlush  A boolean; if true, the output buffer will be flushed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *                    whenever a byte array is written, one of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   158
     *                    {@code println} methods is invoked, or a newline
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   159
     *                    character or byte ({@code '\n'}) is written
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param  encoding   The name of a supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *                    <a href="../lang/package-summary.html#charenc">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *                    character encoding</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *          If the named encoding is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public PrintStream(OutputStream out, boolean autoFlush, String encoding)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        throws UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    {
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   172
        this(requireNonNull(out, "Null output stream"), autoFlush, toCharset(encoding));
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   173
    }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   174
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   175
    /**
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   176
     * Creates a new print stream, with the specified OutputStream, automatic line
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   177
     * flushing and charset.  This convenience constructor creates the necessary
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   178
     * intermediate {@link java.io.OutputStreamWriter OutputStreamWriter},
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   179
     * which will encode characters using the provided charset.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   180
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   181
     * @param  out        The output stream to which values and objects will be
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   182
     *                    printed
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   183
     * @param  autoFlush  A boolean; if true, the output buffer will be flushed
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   184
     *                    whenever a byte array is written, one of the
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   185
     *                    {@code println} methods is invoked, or a newline
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   186
     *                    character or byte ({@code '\n'}) is written
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   187
     * @param  charset    A {@linkplain java.nio.charset.Charset charset}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   188
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   189
     * @since  10
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   190
     */
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   191
    public PrintStream(OutputStream out, boolean autoFlush, Charset charset) {
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   192
        super(out);
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   193
        this.autoFlush = autoFlush;
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   194
        this.charOut = new OutputStreamWriter(this, charset);
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   195
        this.textOut = new BufferedWriter(charOut);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Creates a new print stream, without automatic line flushing, with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * specified file name.  This convenience constructor creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * the necessary intermediate {@link java.io.OutputStreamWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * OutputStreamWriter}, which will encode characters using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * {@linkplain java.nio.charset.Charset#defaultCharset() default charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * for this instance of the Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param  fileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *         The name of the file to use as the destination of this print
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *         stream.  If the file exists, then it will be truncated to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *         zero size; otherwise, a new file will be created.  The output
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *         will be written to the file and is buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @throws  FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *          If the given file object does not denote an existing, writable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *          regular file and a new regular file of that name cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *          created, or if some other error occurs while opening or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     *          creating the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *          If a security manager is present and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *          SecurityManager#checkWrite checkWrite(fileName)} denies write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *          access to the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    public PrintStream(String fileName) throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        this(false, new FileOutputStream(fileName));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Creates a new print stream, without automatic line flushing, with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * specified file name and charset.  This convenience constructor creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * the necessary intermediate {@link java.io.OutputStreamWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * OutputStreamWriter}, which will encode characters using the provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @param  fileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *         The name of the file to use as the destination of this print
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *         stream.  If the file exists, then it will be truncated to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *         zero size; otherwise, a new file will be created.  The output
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     *         will be written to the file and is buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * @param  csn
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *         The name of a supported {@linkplain java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *         charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * @throws  FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     *          If the given file object does not denote an existing, writable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *          regular file and a new regular file of that name cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *          created, or if some other error occurs while opening or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *          creating the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *          If a security manager is present and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *          SecurityManager#checkWrite checkWrite(fileName)} denies write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *          access to the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     *          If the named charset is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    public PrintStream(String fileName, String csn)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        throws FileNotFoundException, UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    {
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   265
        // ensure charset is checked before the file is opened
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   266
        this(false, toCharset(csn), new FileOutputStream(fileName));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * Creates a new print stream, without automatic line flushing, with the
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   271
     * specified file name and charset.  This convenience constructor creates
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   272
     * the necessary intermediate {@link java.io.OutputStreamWriter
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   273
     * OutputStreamWriter}, which will encode characters using the provided
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   274
     * charset.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   275
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   276
     * @param  fileName
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   277
     *         The name of the file to use as the destination of this print
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   278
     *         stream.  If the file exists, then it will be truncated to
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   279
     *         zero size; otherwise, a new file will be created.  The output
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   280
     *         will be written to the file and is buffered.
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
     * @param  charset
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   283
     *         A {@linkplain java.nio.charset.Charset charset}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   284
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   285
     * @throws  IOException
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   286
     *          if an I/O error occurs while opening or creating the file
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   287
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   288
     * @throws  SecurityException
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   289
     *          If a security manager is present and {@link
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   290
     *          SecurityManager#checkWrite checkWrite(fileName)} denies write
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   291
     *          access to the file
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   292
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   293
     * @since  10
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   294
     */
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   295
    public PrintStream(String fileName, Charset charset) throws IOException {
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   296
        this(false, requireNonNull(charset, "charset"), new FileOutputStream(fileName));
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   297
    }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   298
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   299
    /**
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   300
     * Creates a new print stream, without automatic line flushing, with the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * specified file.  This convenience constructor creates the necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * intermediate {@link java.io.OutputStreamWriter OutputStreamWriter},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * which will encode characters using the {@linkplain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * java.nio.charset.Charset#defaultCharset() default charset} for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * instance of the Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @param  file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *         The file to use as the destination of this print stream.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *         file exists, then it will be truncated to zero size; otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *         a new file will be created.  The output will be written to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *         file and is buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @throws  FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     *          If the given file object does not denote an existing, writable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *          regular file and a new regular file of that name cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *          created, or if some other error occurs while opening or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *          creating the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *          If a security manager is present and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *          SecurityManager#checkWrite checkWrite(file.getPath())}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *          denies write access to the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    public PrintStream(File file) throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        this(false, new FileOutputStream(file));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * Creates a new print stream, without automatic line flushing, with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * specified file and charset.  This convenience constructor creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * the necessary intermediate {@link java.io.OutputStreamWriter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * OutputStreamWriter}, which will encode characters using the provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * charset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @param  file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *         The file to use as the destination of this print stream.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *         file exists, then it will be truncated to zero size; otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *         a new file will be created.  The output will be written to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *         file and is buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @param  csn
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *         The name of a supported {@linkplain java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *         charset}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @throws  FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *          If the given file object does not denote an existing, writable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *          regular file and a new regular file of that name cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *          created, or if some other error occurs while opening or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *          creating the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @throws  SecurityException
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 18156
diff changeset
   354
     *          If a security manager is present and {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *          SecurityManager#checkWrite checkWrite(file.getPath())}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *          denies write access to the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @throws  UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *          If the named charset is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    public PrintStream(File file, String csn)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        throws FileNotFoundException, UnsupportedEncodingException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    {
7966
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   366
        // ensure charset is checked before the file is opened
a23e3f47c5a8 7000511: PrintStream, PrintWriter, Formatter, Scanner leave files open when exception thrown
chegar
parents: 5506
diff changeset
   367
        this(false, toCharset(csn), new FileOutputStream(file));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
48252
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   370
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   371
    /**
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   372
     * Creates a new print stream, without automatic line flushing, with the
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   373
     * specified file and charset.  This convenience constructor creates
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   374
     * the necessary intermediate {@link java.io.OutputStreamWriter
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   375
     * OutputStreamWriter}, which will encode characters using the provided
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   376
     * charset.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   377
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   378
     * @param  file
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   379
     *         The file to use as the destination of this print stream.  If the
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   380
     *         file exists, then it will be truncated to zero size; otherwise,
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   381
     *         a new file will be created.  The output will be written to the
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   382
     *         file and is buffered.
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   383
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   384
     * @param  charset
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   385
     *         A {@linkplain java.nio.charset.Charset charset}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   386
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   387
     * @throws  IOException
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   388
     *          if an I/O error occurs while opening or creating the file
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   389
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   390
     * @throws  SecurityException
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   391
     *          If a security manager is present and {@link
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   392
     *          SecurityManager#checkWrite checkWrite(file.getPath())}
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   393
     *          denies write access to the file
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   394
     *
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   395
     * @since  10
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   396
     */
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   397
    public PrintStream(File file, Charset charset) throws IOException {
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   398
        this(false, requireNonNull(charset, "charset"), new FileOutputStream(file));
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   399
    }
77b88d8f8380 8183743: Umbrella: add overloads that take a Charset parameter
joehw
parents: 47216
diff changeset
   400
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    /** Check to make sure that the stream has not been closed */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    private void ensureOpen() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        if (out == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            throw new IOException("Stream closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * Flushes the stream.  This is done by writing any buffered output bytes to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * the underlying output stream and then flushing that stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @see        java.io.OutputStream#flush()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public void flush() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    private boolean closing = false; /* To avoid recursive closing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * Closes the stream.  This is done by flushing the stream and then closing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * the underlying output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @see        java.io.OutputStream#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    public void close() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            if (! closing) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                closing = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                    textOut.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                    out.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                    trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                textOut = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                charOut = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                out = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * Flushes the stream and checks its error state. The internal error state
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   453
     * is set to {@code true} when the underlying output stream throws an
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   454
     * {@code IOException} other than {@code InterruptedIOException},
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   455
     * and when the {@code setError} method is invoked.  If an operation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * on the underlying output stream throws an
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   457
     * {@code InterruptedIOException}, then the {@code PrintStream}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * converts the exception back into an interrupt by doing:
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   459
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *     Thread.currentThread().interrupt();
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   461
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * or the equivalent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   464
     * @return {@code true} if and only if this stream has encountered an
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   465
     *         {@code IOException} other than
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   466
     *         {@code InterruptedIOException}, or the
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   467
     *         {@code setError} method has been invoked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    public boolean checkError() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        if (out != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        if (out instanceof java.io.PrintStream) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            PrintStream ps = (PrintStream) out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            return ps.checkError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return trouble;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   480
     * Sets the error state of the stream to {@code true}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * <p> This method will cause subsequent invocations of {@link
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   483
     * #checkError()} to return {@code true} until
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   484
     * {@link #clearError()} is invoked.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   486
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    protected void setError() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * Clears the internal error state of this stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * <p> This method will cause subsequent invocations of {@link
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   496
     * #checkError()} to return {@code false} until another write
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * operation fails and invokes {@link #setError()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    protected void clearError() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        trouble = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * Exception-catching, synchronized output operations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * which also implement the write() methods of OutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * Writes the specified byte to this stream.  If the byte is a newline and
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   512
     * automatic flushing is enabled then the {@code flush} method will be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * invoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * <p> Note that the byte is written as given; to write a character that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * will be translated according to the platform's default character
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   517
     * encoding, use the {@code print(char)} or {@code println(char)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @param  b  The byte to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @see #print(char)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @see #println(char)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    public void write(int b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                out.write(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                if ((b == '\n') && autoFlush)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                    out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   542
     * Writes {@code len} bytes from the specified byte array starting at
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   543
     * offset {@code off} to this stream.  If automatic flushing is
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   544
     * enabled then the {@code flush} method will be invoked.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * <p> Note that the bytes will be written as given; to write characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * that will be translated according to the platform's default character
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   548
     * encoding, use the {@code print(char)} or {@code println(char)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param  buf   A byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @param  off   Offset from which to start taking bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @param  len   Number of bytes to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    public void write(byte buf[], int off, int len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                out.write(buf, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                if (autoFlush)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                    out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * The following private methods on the text- and character-output streams
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * always flush the stream buffers, so that writes to the underlying byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * stream occur as promptly as with the original PrintStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   578
    private void write(char[] buf) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                textOut.write(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                textOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                charOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                if (autoFlush) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                    for (int i = 0; i < buf.length; i++)
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   587
                        if (buf[i] == '\n') {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                            out.flush();
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   589
                            break;
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   590
                        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            }
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   593
        } catch (InterruptedIOException x) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   594
            Thread.currentThread().interrupt();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   595
        } catch (IOException x) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   596
            trouble = true;
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   597
        }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   598
    }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   599
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   600
    // Used to optimize away back-to-back flushing and synchronization when
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   601
    // using println, but since subclasses could exist which depend on
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   602
    // observing a call to print followed by newLine() we only use this if
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   603
    // getClass() == PrintStream.class to avoid compatibility issues.
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   604
    private void writeln(char[] buf) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   605
        try {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   606
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   607
                ensureOpen();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   608
                textOut.write(buf);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   609
                textOut.newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   610
                textOut.flushBuffer();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   611
                charOut.flushBuffer();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   612
                if (autoFlush)
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   613
                    out.flush();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   614
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
        catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    private void write(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                textOut.write(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                textOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                charOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                if (autoFlush && (s.indexOf('\n') >= 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   643
    // Used to optimize away back-to-back flushing and synchronization when
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   644
    // using println, but since subclasses could exist which depend on
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   645
    // observing a call to print followed by newLine we only use this if
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   646
    // getClass() == PrintStream.class to avoid compatibility issues.
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   647
    private void writeln(String s) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   648
        try {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   649
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   650
                ensureOpen();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   651
                textOut.write(s);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   652
                textOut.newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   653
                textOut.flushBuffer();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   654
                charOut.flushBuffer();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   655
                if (autoFlush)
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   656
                    out.flush();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   657
            }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   658
        }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   659
        catch (InterruptedIOException x) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   660
            Thread.currentThread().interrupt();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   661
        }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   662
        catch (IOException x) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   663
            trouble = true;
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   664
        }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   665
    }
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   666
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    private void newLine() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                textOut.newLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                textOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                charOut.flushBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                if (autoFlush)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                    out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    /* Methods that do not terminate lines */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   689
     * Prints a boolean value.  The string produced by {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   690
     * java.lang.String#valueOf(boolean)} is translated into bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   693
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   695
     * @param      b   The {@code boolean} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public void print(boolean b) {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38786
diff changeset
   698
        write(String.valueOf(b));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * Prints a character.  The character is translated into one or more bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   705
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   707
     * @param      c   The {@code char} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    public void print(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        write(String.valueOf(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   714
     * Prints an integer.  The string produced by {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   715
     * java.lang.String#valueOf(int)} is translated into bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   718
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   720
     * @param      i   The {@code int} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * @see        java.lang.Integer#toString(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    public void print(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        write(String.valueOf(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   728
     * Prints a long integer.  The string produced by {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   729
     * java.lang.String#valueOf(long)} is translated into bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   732
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   734
     * @param      l   The {@code long} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * @see        java.lang.Long#toString(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    public void print(long l) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        write(String.valueOf(l));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   742
     * Prints a floating-point number.  The string produced by {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   743
     * java.lang.String#valueOf(float)} is translated into bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   746
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   748
     * @param      f   The {@code float} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * @see        java.lang.Float#toString(float)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public void print(float f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        write(String.valueOf(f));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * Prints a double-precision floating-point number.  The string produced by
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   757
     * {@link java.lang.String#valueOf(double)} is translated into
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * bytes according to the platform's default character encoding, and these
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   759
     * bytes are written in exactly the manner of the {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   760
     * #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   762
     * @param      d   The {@code double} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * @see        java.lang.Double#toString(double)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    public void print(double d) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        write(String.valueOf(d));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * Prints an array of characters.  The characters are converted into bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   773
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * @param      s   The array of chars to be printed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   777
     * @throws  NullPointerException  If {@code s} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    public void print(char s[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        write(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   784
     * Prints a string.  If the argument is {@code null} then the string
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   785
     * {@code "null"} is printed.  Otherwise, the string's characters are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * converted into bytes according to the platform's default character
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * encoding, and these bytes are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   788
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   790
     * @param      s   The {@code String} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    public void print(String s) {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38786
diff changeset
   793
        write(String.valueOf(s));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    /**
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   797
     * Prints an object.  The string produced by the {@link
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   798
     * java.lang.String#valueOf(Object)} method is translated into bytes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * according to the platform's default character encoding, and these bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * are written in exactly the manner of the
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   801
     * {@link #write(int)} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   803
     * @param      obj   The {@code Object} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * @see        java.lang.Object#toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    public void print(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        write(String.valueOf(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    /* Methods that do terminate lines */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * Terminates the current line by writing the line separator string.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     * line separator string is defined by the system property
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   816
     * {@code line.separator}, and is not necessarily a single newline
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   817
     * character ({@code '\n'}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
    public void println() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        newLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * Prints a boolean and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   825
     * though it invokes {@link #print(boolean)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   826
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   828
     * @param x  The {@code boolean} to be printed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    public void println(boolean x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   831
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   832
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   833
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   834
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   835
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   836
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   837
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * Prints a character and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   843
     * though it invokes {@link #print(char)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   844
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   846
     * @param x  The {@code char} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    public void println(char x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   849
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   850
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   851
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   852
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   853
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   854
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   855
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     * Prints an integer and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   861
     * though it invokes {@link #print(int)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   862
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   864
     * @param x  The {@code int} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    public void println(int x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   867
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   868
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   869
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   870
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   871
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   872
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   873
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * Prints a long and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   879
     * though it invokes {@link #print(long)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   880
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   882
     * @param x  a The {@code long} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    public void println(long x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   885
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   886
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   887
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   888
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   889
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   890
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   891
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * Prints a float and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   897
     * though it invokes {@link #print(float)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   898
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   900
     * @param x  The {@code float} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
    public void println(float x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   903
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   904
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   905
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   906
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   907
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   908
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   909
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * Prints a double and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   915
     * though it invokes {@link #print(double)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   916
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   918
     * @param x  The {@code double} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    public void println(double x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   921
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   922
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   923
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   924
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   925
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   926
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   927
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * Prints an array of characters and then terminate the line.  This method
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   933
     * behaves as though it invokes {@link #print(char[])} and
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   934
     * then {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * @param x  an array of chars to print.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     */
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   938
    public void println(char[] x) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   939
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   940
            writeln(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   941
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   942
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   943
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   944
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   945
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * Prints a String and then terminate the line.  This method behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   951
     * though it invokes {@link #print(String)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   952
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   954
     * @param x  The {@code String} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
    public void println(String x) {
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   957
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   958
            writeln(String.valueOf(x));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   959
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   960
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   961
                print(x);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   962
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   963
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * Prints an Object and then terminate the line.  This method calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * at first String.valueOf(x) to get the printed object's string value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     * then behaves as
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   971
     * though it invokes {@link #print(String)} and then
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   972
     * {@link #println()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   974
     * @param x  The {@code Object} to be printed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
    public void println(Object x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        String s = String.valueOf(x);
53148
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   978
        if (getClass() == PrintStream.class) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   979
            // need to apply String.valueOf again since first invocation
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   980
            // might return null
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   981
            writeln(String.valueOf(s));
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   982
        } else {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   983
            synchronized (this) {
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   984
                print(s);
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   985
                newLine();
17d568776429 8215412: Optimize PrintStream.println methods
redestad
parents: 48252
diff changeset
   986
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * A convenience method to write a formatted string to this output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * using the specified format string and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   995
     * <p> An invocation of this method of the form
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   996
     * {@code out.printf(format, args)} behaves
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   997
     * in exactly the same way as the invocation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   999
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1000
     *     out.format(format, args)
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1001
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     *         A format string as described in <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     *         href="../util/Formatter.html#syntax">Format string syntax</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1013
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1014
     *         The behaviour on a
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1015
     *         {@code null} argument depends on the <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 9266
diff changeset
  1018
     * @throws  java.util.IllegalFormatException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     *          formatter class specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * @throws  NullPointerException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1028
     *          If the {@code format} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    public PrintStream printf(String format, Object ... args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        return format(format, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     * A convenience method to write a formatted string to this output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     * using the specified format string and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1042
     * <p> An invocation of this method of the form
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1043
     * {@code out.printf(l, format, args)} behaves
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1044
     * in exactly the same way as the invocation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1046
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1047
     *     out.format(l, format, args)
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1048
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     * @param  l
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     *         The {@linkplain java.util.Locale locale} to apply during
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1052
     *         formatting.  If {@code l} is {@code null} then no localization
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     *         is applied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     *         A format string as described in <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     *         href="../util/Formatter.html#syntax">Format string syntax</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1065
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1066
     *         The behaviour on a
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1067
     *         {@code null} argument depends on the <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 9266
diff changeset
  1070
     * @throws  java.util.IllegalFormatException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     *          formatter class specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     * @throws  NullPointerException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1080
     *          If the {@code format} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
    public PrintStream printf(Locale l, String format, Object ... args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        return format(l, format, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     * Writes a formatted string to this output stream using the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * format string and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     * <p> The locale always used is the one returned by {@link
38786
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1095
     * java.util.Locale#getDefault(Locale.Category)} with
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1096
     * {@link java.util.Locale.Category#FORMAT FORMAT} category specified,
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1097
     * regardless of any previous invocations of other formatting methods on
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1098
     * this object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     *         A format string as described in <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     *         href="../util/Formatter.html#syntax">Format string syntax</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1110
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1111
     *         The behaviour on a
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1112
     *         {@code null} argument depends on the <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 9266
diff changeset
  1115
     * @throws  java.util.IllegalFormatException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     *          formatter class specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * @throws  NullPointerException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1125
     *          If the {@code format} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
    public PrintStream format(String format, Object ... args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
                if ((formatter == null)
38786
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1136
                    || (formatter.locale() !=
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1137
                        Locale.getDefault(Locale.Category.FORMAT)))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
                    formatter = new Formatter((Appendable) this);
38786
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1139
                formatter.format(Locale.getDefault(Locale.Category.FORMAT),
8e7b0ac05815 8146156: Inconsistent default locale in string formatter methods
naoto
parents: 32033
diff changeset
  1140
                                 format, args);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        } catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     * Writes a formatted string to this output stream using the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * format string and arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * @param  l
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     *         The {@linkplain java.util.Locale locale} to apply during
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1156
     *         formatting.  If {@code l} is {@code null} then no localization
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     *         is applied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     * @param  format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     *         A format string as described in <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     *         href="../util/Formatter.html#syntax">Format string syntax</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * @param  args
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     *         Arguments referenced by the format specifiers in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     *         string.  If there are more arguments than format specifiers, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *         extra arguments are ignored.  The number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     *         variable and may be zero.  The maximum number of arguments is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     *         limited by the maximum dimension of a Java array as defined by
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1169
     *         <cite>The Java&trade; Virtual Machine Specification</cite>.
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 8166
diff changeset
  1170
     *         The behaviour on a
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1171
     *         {@code null} argument depends on the <a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     *         href="../util/Formatter.html#syntax">conversion</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 9266
diff changeset
  1174
     * @throws  java.util.IllegalFormatException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     *          If a format string contains an illegal syntax, a format
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
     *          specifier that is incompatible with the given arguments,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
     *          insufficient arguments given the format string, or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
     *          illegal conditions.  For specification of all possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
     *          formatting errors, see the <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
     *          href="../util/Formatter.html#detail">Details</a> section of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
     *          formatter class specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     * @throws  NullPointerException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1184
     *          If the {@code format} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
    public PrintStream format(Locale l, String format, Object ... args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
                ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
                if ((formatter == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
                    || (formatter.locale() != l))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
                    formatter = new Formatter(this, l);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
                formatter.format(l, format, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        } catch (InterruptedIOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
            Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
        } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
            trouble = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     * Appends the specified character sequence to this output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1210
     * <p> An invocation of this method of the form {@code out.append(csq)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1213
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1214
     *     out.print(csq.toString())
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1215
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1217
     * <p> Depending on the specification of {@code toString} for the
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1218
     * character sequence {@code csq}, the entire sequence may not be
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1219
     * appended.  For instance, invoking then {@code toString} method of a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * character buffer will return a subsequence whose content depends upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     * the buffer's position and limit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * @param  csq
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1224
     *         The character sequence to append.  If {@code csq} is
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1225
     *         {@code null}, then the four characters {@code "null"} are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     *         appended to this output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
    public PrintStream append(CharSequence csq) {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38786
diff changeset
  1233
        print(String.valueOf(csq));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * Appends a subsequence of the specified character sequence to this output
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     * stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1241
     * <p> An invocation of this method of the form
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1242
     * {@code out.append(csq, start, end)} when
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1243
     * {@code csq} is not {@code null}, behaves in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
     * exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1246
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1247
     *     out.print(csq.subSequence(start, end).toString())
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1248
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     * @param  csq
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
     *         The character sequence from which a subsequence will be
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1252
     *         appended.  If {@code csq} is {@code null}, then characters
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1253
     *         will be appended as if {@code csq} contained the four
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1254
     *         characters {@code "null"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
     * @param  start
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
     *         The index of the first character in the subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
     * @param  end
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
     *         The index of the character following the last character in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
     *         subsequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
     * @throws  IndexOutOfBoundsException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1266
     *          If {@code start} or {@code end} are negative, {@code start}
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1267
     *          is greater than {@code end}, or {@code end} is greater than
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1268
     *          {@code csq.length()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
    public PrintStream append(CharSequence csq, int start, int end) {
40410
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38786
diff changeset
  1273
        if (csq == null) csq = "null";
5fd4a1f809f8 8163517: Various cleanup in java.io code
igerasim
parents: 38786
diff changeset
  1274
        return append(csq.subSequence(start, end));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     * Appends the specified character to this output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1280
     * <p> An invocation of this method of the form {@code out.append(c)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1283
     * <pre>{@code
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1284
     *     out.print(c)
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
  1285
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * @param  c
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     *         The 16-bit character to append
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * @return  This output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
    public PrintStream append(char c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
        print(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
}