JSONBuilder的用法
Posted 奔跑8蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSONBuilder的用法相关的知识,希望对你有一定的参考价值。
JSONBuilder可以向文件中写入写入json字符串。如下面的例子:
1 public class Test 2 { 3 public static void main(String args[]) throws IOException 4 { 5 File f = new File("d:" + File.separator + "test.txt"); 6 FileWriter fw = new FileWriter(f); 7 JSONBuilder builder = new JSONBuilder(fw); 8 builder.object(); 9 builder.key("Json"); 10 builder.value("Hello, World!"); 11 builder.endObject(); 12 fw.flush(); 13 fw.close(); 14 } 15 }
以上是关于JSONBuilder的用法的主要内容,如果未能解决你的问题,请参考以下文章
GroovyGroovy 对象转为 json 字符串 ( 使用 JsonBuilder 进行转换 | 使用 JsonOutput 进行转换 | 将 json 字符串格式化输出 )
Groovy JsonBuilder:使用变量名称的字段名称
Groovyjson 生成器 ( JsonBuilder 生成器 | 生成带根节点名称的 json 字符串 | 生成不带根节点名称的 json 字符串 )