更新案例

This commit is contained in:
2022-08-28 11:43:13 +08:00
parent 648ebe5708
commit 756c4f7381
14 changed files with 346 additions and 1 deletions

View File

@ -0,0 +1,19 @@
package cn.x47.ltw;
import com.alibaba.fastjson.JSON;
import java.util.HashMap;
import java.util.Map;
/**
* @author xuwei
*/
public final class Main {
public static void main(String[] args) {
Map<String, String> map = new HashMap<>(1);
map.put("key", "ssss");
JSON.toJSONString(map);
}
}