Here you can find the source of deserialize(String data, String className)
public static Object deserialize(String data, String className)
//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; } }