Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/io/Reader/ReadIntoReadOnlyBuffer.java
41149 views
1
/*
2
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
import java.io.IOException;
25
import java.io.Reader;
26
import java.io.StringReader;
27
import java.nio.ByteBuffer;
28
import java.nio.CharBuffer;
29
import java.nio.ReadOnlyBufferException;
30
31
/*
32
* @test
33
* @bug 8266078
34
* @summary Tests that attempting to read into a read-only CharBuffer
35
* does not advance the Reader position
36
* @run main ReadIntoReadOnlyBuffer
37
*/
38
public class ReadIntoReadOnlyBuffer {
39
private static final String THE_STRING = "123";
40
public static void main(String[] args) throws Exception {
41
CharBuffer buf = CharBuffer.allocate(8).asReadOnlyBuffer();
42
StringReader r = new StringReader(THE_STRING);
43
read(r, buf);
44
buf = ByteBuffer.allocateDirect(16).asCharBuffer().asReadOnlyBuffer();
45
r = new StringReader(THE_STRING);
46
read(r, buf);
47
}
48
49
private static void read(Reader r, CharBuffer b) throws IOException {
50
try {
51
r.read(b);
52
throw new RuntimeException("ReadOnlyBufferException expected");
53
} catch (ReadOnlyBufferException expected) {
54
}
55
56
char[] c = new char[3];
57
int n = r.read(c);
58
if (n != c.length) {
59
throw new RuntimeException("Expected " + c.length + ", got " + n);
60
}
61
62
String s = new String(c);
63
if (!s.equals(THE_STRING)) {
64
throw new RuntimeException("Expected " + THE_STRING + ", got " + s);
65
}
66
}
67
}
68
69