-
Bug
-
Resolution: Not an Issue
-
P3
-
None
-
1.4.0
-
sparc
-
solaris_2.6
Name: dsR10051 Date: 03/16/2001
Method
protected void flush() of class java.beans.XMLEncoder
throws NullPointerException if java.math.BigInteger and java.math.BigDecimal
have been writen to output stream before.
Here is minimized test:
import java.io.*;
import java.beans.*;
import java.math.*;
public class Test0008 {
public static void main(String[] args) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
Object[] objects = {BigInteger.ONE, new BigDecimal(BigInteger.ONE)};
XMLEncoder xmlEnc = new XMLEncoder(os);
for (int i = 0; i < objects.length; i++) {
xmlEnc.writeObject(objects[i]);
}
xmlEnc.flush();
xmlEnc.close();
ByteArrayInputStream in = new ByteArrayInputStream(os.toByteArray());
XMLDecoder xmlDec = new XMLDecoder(in);
System.out.println("OutputStream");
System.out.println(os.toString());
for (int i = 0; i < objects.length; i++) {
Object res = xmlDec.readObject();
if (!objects[i].equals(res)) {
System.out.println("FAILED");
System.out.println("Object type: " + objects[i].getClass());
System.out.println("Result : " + res);
System.out.println("Expected: " + objects[i]);
}
}
}
}
%java -version
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b55)
Java HotSpot(TM) Client VM (build 1.4beta-B55, mixed mode)
%java Test0008
Warning:
Cannot allocate colormap entry for default background
Exception in thread "main" java.lang.NullPointerException
at java.beans.XMLEncoder.outputValue(XMLEncoder.java:482)
at java.beans.XMLEncoder.flush(XMLEncoder.java:379)
at Test0008.main(Test0008.java:14)
%
======================================================================