我有这个字符串:
CassandraRow{
email: test@example.com,
lastname: Example,
name: User,
password: Password}
如何将上述字符串转换为JSON字符串类型?
{"email": "test@example.com",
"lastname": "Example",
"name": "User",
"password": "Password"}
答案 0 :(得分:0)
使用dataAsString方法提取CassandraRow中的所有内容,然后对其进行处理就容易得多。