Java XML JAXB Serialize deserialize(String data, String className)

Here you can find the source of deserialize(String data, String className)

Description

deserialize

License

Apache License

Declaration

public static Object deserialize(String data, String className) 

Method Source Code

//package com.java2s;
/*//w ww . j ava 2s  . c  om
   Copyright 2013 Philipp Leitner
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

import java.io.StringReader;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

public class Main {
    public static Object deserialize(String data, String className) {
        if (className == null || className.length() == 0)
            return null;

        if (data != null && data.length() > 0) {
            try (StringReader reader = new StringReader(data)) {
                try {
                    JAXBContext ctx = JAXBContext.newInstance(Class.forName(className));
                    Unmarshaller um = ctx.createUnmarshaller();
                    return um.unmarshal(reader);
                } catch (JAXBException | ClassNotFoundException ex) {//let's just ignore.
                }
            }
        } else {
            try {
                return Class.forName(className).newInstance();
            } catch (InstantiationException | IllegalAccessException | ClassNotFoundException e) {
            }
        }

        return null;
    }
}

Related

  1. deSerialize(Class docClass, InputStream inputStream)
  2. deserialize(Element elmnt, Class cls)
  3. deserialize(File fXMLFilePath, Class cls)
  4. deserialize(final Class clazz, final String json)
  5. deserialize(Path input, Class clazz)
  6. deserializeFile(String path, Class clazz)
  7. deserializeFromXmlFile(T defaultObject, String fileName)
  8. deserializeXmlToJava(String valueType, Serializable value)
  9. save(Class confClass, Object confObj, File xmlFile)