Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2008-2010 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package com.sun.btrace;
import java.io.IOException;
import java.io.Writer;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.nio.charset.Charset;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.UnsupportedCharsetException;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Map;
import java.util.IdentityHashMap;
/**
* This class serializes an object to XML. This class
* handles circular references by generating ID and IDREF
* attributes.
*
* @author A. Sundararajan
*/
final class XMLSerializer {
// do not create me!
private XMLSerializer() {}
private static final String ID = "id";
private static final String IDREF = "idref";
private static final String CLASS = "class";
/**
* Write an object as an XML document to the out.
*/
public static void write(Object obj, Writer out) throws IOException {
if (obj == null || out == null) {
throw new NullPointerException();
}
Serializer s = new Serializer(out);
s.write(obj);
out.flush();
}
/**
* Return XML document string for the given object.
*/
public static String toXML(Object obj) throws IOException {
if (obj == null) {
throw new NullPointerException();
}
StringWriter sw = new StringWriter();
write(obj, sw);
return sw.toString();
}
public static void main(String[] args) throws IOException {
if (args.length > 0) {
System.out.println(toXML(args));
} else {
System.out.println(toXML(XMLSerializer.class));
}
}
// class that handles XML serialization
private static class Serializer {
private static CharsetEncoder encoder = Charset.forName("8859_1").newEncoder();
// out on which we will write XML
private PrintWriter out;
// map to maintain objects serialized already
private Map