package cn.tedu.test;
import cn.hutool.core.map.MapUtil;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.Map;
/**
* @author 孙永潮
* @date 2024/01/04
*/
public class MathRandomTest {
public static void main(String[] args) {
//生成一个 大于或等于0 且小于1的 双精度 随机数
double random = Math.random();
//保留2位小数
String str2 = String.format("%.2f", random);
//保留4位小数
String str4 = String.format("%.4f", random);
// 生成一个随机的小写字母
char randomChar = (char) ((int) (Math.random() * 26) + 'a');
String smallLetter = String.valueOf(randomChar);
Map<String, Object> map = MapUtil.<String, Object>builder()
.put("保留2位小数", str2)
.put("保留4位小数", str4)
.put("随机的小写字母", smallLetter)
.build();
//转换为 JSON格式的 字符串
String s = JSONUtil.toJsonPrettyStr(map);
System.out.println(s);
// 将Map对象转换为JSON字符串
String jsonString = JSON.toJSONString(map);
System.out.println(jsonString);
// 将JSON字符串解析为JSONObject
JSONObject jsonObject = JSON.parseObject(jsonString);
System.out.println(jsonObject);
//创建Gson对象
Gson gson = new GsonBuilder().setPrettyPrinting().create();
// 将对象转换为JSON字符串
String json = gson.toJson(map);
System.out.println(json);
// 将JSON字符串转换为对象
Object object = gson.fromJson(json, Object.class);
System.out.println(object);
}
}
用的是Maven作为构建工具,在节中添加以下内容:
<!-- Gson库的依赖 -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- Fastjson库的依赖 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.76</version>
</dependency>