博:
class Apple {
private String appleName;
private String appleBenefits;
}
在 jsp 中,我使用 jquery 编辑器插件 (cleditor.js) 来输入字段的值"appleBenefits" from the jsp.
String appleBenefits = "<ul><li> An apple a day keeps the <hr><font color="ff0000">Doctor away</li></ui><br>"
但是,当我需要将其值存储在 DB 中时,我需要将其存储为:
"An apple a day keeps the Doctor away"
我怎样才能在java中做到这一点?