Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须创建一个 json 对象并使用 java 将其存储在 mysql 中
我很困惑,我该怎么办。请帮我。
MySql 有一个称为'MEDIUMTEXT'存储文本内容或 CLOB 的数据类型。您可以创建一个表,其中一个列定义为'MEDIUMTEXT',并使用任一 JDBC 语句类 setString 方法来设置 JSONjsonObject.toString()值。
'MEDIUMTEXT'
jsonObject.toString()
如果需要,您还可以使用'LONGTEXT'数据类型。
'LONGTEXT'