本文整理汇总了Java中com.eclipsesource.json.JsonObject.writeTo方法的典型用法代码示例。如果您正苦于以下问题:Java JsonObject.writeTo方法的具体用法?Java JsonObject.writeTo怎么用?Java JsonObject.writeTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.eclipsesource.json.JsonObject
的用法示例。
在下文中一共展示了JsonObject.writeTo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: save
import com.eclipsesource.json.JsonObject; //导入方法依赖的package包/类
private static void save() throws Exception {
final JsonObject runBench = new JsonObject();
runBench.add("benchmarks", JsonHandler.global);
runBench.add("time", System.currentTimeMillis());
if (System.getProperty("commit") != null) {
runBench.add("commit", System.getProperty("commit"));
}
if (System.getProperty("data") != null) {
File targetDir = new File(System.getProperty("data"));
if (!targetDir.exists()) {
targetDir.mkdirs();
}
File output = new File(targetDir, System.currentTimeMillis() + ".json");
FileWriter writer = new FileWriter(output);
runBench.writeTo(writer);
writer.flush();
writer.close();
} else {
System.out.println(runBench.toString());
}
}
示例2: write
import com.eclipsesource.json.JsonObject; //导入方法依赖的package包/类
public static boolean write() {
FileHandle fileHandle = Compatibility.get().getBaseFolder().child("settings.json");
JsonObject json = new JsonObject();
for (Map.Entry<String, Setting> entry : settings.entrySet()) {
json.set(entry.getKey(), entry.getValue().toJson());
}
try {
Writer writer = fileHandle.writer(false);
json.writeTo(writer, WriterConfig.PRETTY_PRINT);
writer.close();
} catch (Exception e) {
Log.error("Failed to write settings", e);
fileHandle.delete();
return false;
}
return true;
}
示例3: write
import com.eclipsesource.json.JsonObject; //导入方法依赖的package包/类
public static boolean write() {
FileHandle fileHandle = Compatibility.get().getBaseFolder().child("settings.json");
JsonObject json = new JsonObject();
for (Map.Entry<String, Setting> entry : settings.entrySet()) {
json.set(entry.getKey(), entry.getValue().toJson());
}
try {
Writer writer = fileHandle.writer(false);
json.writeTo(writer, WriterConfig.PRETTY_PRINT);
writer.close();
} catch (Exception e) {
Log.error("Failed to write settings", e);
fileHandle.delete();
return false;
}
return true;
}
示例4: save
import com.eclipsesource.json.JsonObject; //导入方法依赖的package包/类
/**
* Save current settings to configuration.
*/
public void save() {
try {
if (!confFile.exists() && !confFile.createNewFile()) {
// Return if config file cannot be found and cannot be created.
return;
}
JsonObject json = Json.object();
for (Field field : this.getClass().getDeclaredFields()) {
// Skip private and static fields.
int mod = field.getModifiers();
if (Modifier.isPrivate(mod) || Modifier.isStatic(mod)) {
continue;
}
// Access via reflection, add value to json object.
field.setAccessible(true);
String name = field.getName();
Object value = field.get(this);
if (value instanceof Boolean) {
json.set(name, (boolean) value);
} else if (value instanceof Integer) {
json.set(name, (int) value);
} else if (value instanceof String) {
json.set(name, (String) value);
} else {
JsonValue converted = convert(field.getType(), value);
if (converted != null) {
json.set(name, converted);
}
}
}
// Write json to file
StringWriter w = new StringWriter();
json.writeTo(w, WriterConfig.PRETTY_PRINT);
Files.writeFile(confFile.getAbsolutePath(), w.toString());
} catch (Exception e) {
Recaf.INSTANCE.logging.error(e);
}
}