Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/io/Serializable/GetField/Read2.java
41153 views
1
/*
2
* Copyright (c) 2001, 2019, 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
/*
25
* @bug 4427881
26
* @summary Verify that the ObjectInputStream.GetField API works properly for
27
* serialized fields which exist in the receiving object.
28
*/
29
30
import java.io.*;
31
32
class Foo implements Serializable {
33
private static final long serialVersionUID = 0L;
34
35
boolean z;
36
byte b;
37
char c;
38
short s;
39
int i;
40
long j;
41
float f;
42
double d;
43
String str;
44
@SuppressWarnings("serial") /* Incorrect declarations are being tested */
45
Object extra;
46
47
private void readObject(ObjectInputStream in)
48
throws IOException, ClassNotFoundException
49
{
50
ObjectInputStream.GetField fields = in.readFields();
51
if ((fields.get("z", false) != true) ||
52
(fields.get("b", (byte) 0) != 5) ||
53
(fields.get("c", '0') != '5') ||
54
(fields.get("s", (short) 0) != 5) ||
55
(fields.get("i", 0) != 5) ||
56
(fields.get("j", 0l) != 5) ||
57
(fields.get("f", 0.0f) != 5.0f) ||
58
(fields.get("d", 0.0) != 5.0) ||
59
(! fields.get("str", null).equals("5")))
60
{
61
throw new Error();
62
}
63
}
64
}
65
66
public class Read2 {
67
public static void main(String[] args) throws Exception {
68
ObjectInputStream oin =
69
new ObjectInputStream(new FileInputStream("tmp.ser"));
70
oin.readObject();
71
oin.close();
72
}
73
}
74
75