com.github.TKnudsen.ComplexDataObject.model.io.json.JSONWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of complex-data-object Show documentation
Show all versions of complex-data-object Show documentation
A library that models real-world objects in Java, referred to as ComplexDataObjects. Other features: IO and preprocessing of ComplexDataObjects.
package com.github.TKnudsen.ComplexDataObject.model.io.json;
import java.io.File;
import java.io.IOException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.TKnudsen.ComplexDataObject.data.complexDataObject.ComplexDataObject;
/**
*
* Title: JSONWriter
*
*
*
* Description: writes a ComplexDataObject as JSON
*
*
*
* Copyright: Copyright (c) 2017
*
*
* @author Juergen Bernard
* @version 1.0
*/
public class JSONWriter {
public static String writeToString(ComplexDataObject complexDataObject) {
ObjectMapper mapper = ObjectMapperFactory.getComplexDataObjectObjectMapper();
String stringRepresentation;
try {
stringRepresentation = mapper.writeValueAsString(complexDataObject);
return stringRepresentation;
} catch (JsonProcessingException e) {
e.printStackTrace();
}
return null;
}
public static void writeToFile(ComplexDataObject complexDataObject, String file) {
ObjectMapper mapper = ObjectMapperFactory.getComplexDataObjectObjectMapper();
try {
mapper.writeValue(new File(file), complexDataObject);
} catch (IOException e) {
e.printStackTrace();
}
return;
}
}