Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/nio/MappedByteBuffer/Basic.java
41149 views
1
/*
2
* Copyright (c) 2001, 2010, 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
/* @test
25
* @bug 4462336 6799037
26
* @summary Simple MappedByteBuffer tests
27
*/
28
29
import java.io.*;
30
import java.nio.*;
31
import java.nio.channels.*;
32
33
public class Basic {
34
public static void main(String[] args) throws Exception {
35
byte[] srcData = new byte[20];
36
for (int i=0; i<20; i++)
37
srcData[i] = 3;
38
File blah = File.createTempFile("blah", null);
39
blah.deleteOnExit();
40
FileOutputStream fos = new FileOutputStream(blah);
41
FileChannel fc = fos.getChannel();
42
fc.write(ByteBuffer.wrap(srcData));
43
fc.close();
44
fos.close();
45
46
FileInputStream fis = new FileInputStream(blah);
47
fc = fis.getChannel();
48
MappedByteBuffer mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, 10);
49
mbb.load();
50
mbb.isLoaded();
51
mbb.force();
52
if (!mbb.isReadOnly())
53
throw new RuntimeException("Incorrect isReadOnly");
54
55
// repeat with unaligned position in file
56
mbb = fc.map(FileChannel.MapMode.READ_ONLY, 1, 10);
57
mbb.load();
58
mbb.isLoaded();
59
mbb.force();
60
fc.close();
61
fis.close();
62
63
RandomAccessFile raf = new RandomAccessFile(blah, "r");
64
fc = raf.getChannel();
65
mbb = fc.map(FileChannel.MapMode.READ_ONLY, 0, 10);
66
if (!mbb.isReadOnly())
67
throw new RuntimeException("Incorrect isReadOnly");
68
fc.close();
69
raf.close();
70
71
raf = new RandomAccessFile(blah, "rw");
72
fc = raf.getChannel();
73
mbb = fc.map(FileChannel.MapMode.READ_WRITE, 0, 10);
74
if (mbb.isReadOnly())
75
throw new RuntimeException("Incorrect isReadOnly");
76
fc.close();
77
raf.close();
78
79
// clean-up
80
mbb = null;
81
System.gc();
82
Thread.sleep(500);
83
}
84
}
85
86