java如何把在线编辑器的内容存储到数据库
1个回答
展开全部
<FCK:editor instanceName="设定的属性" height="400" width="100%" toolbarSet="Text" basePath="/static/FCKeditor/"> </FCK:editor>
在进入action后,接收,保存即可
另外就是一般使用fck搭配的是数据库中的clob字段
在存储的时候使用下面的语句:
sql = "select content from 数据库名称 for update";
rs = DbQuery(sql);
rs.getClob("CLOB");
OracleThinClob clobComment = null;
if (rs.next()) {
clobComment = (OracleThinClob) rs.getClob("content");
}
Writer w = clobComment.getCharacterOutputStream();
w.write(用于接收内容的属性);
w.flush();
w.close();
在进入action后,接收,保存即可
另外就是一般使用fck搭配的是数据库中的clob字段
在存储的时候使用下面的语句:
sql = "select content from 数据库名称 for update";
rs = DbQuery(sql);
rs.getClob("CLOB");
OracleThinClob clobComment = null;
if (rs.next()) {
clobComment = (OracleThinClob) rs.getClob("content");
}
Writer w = clobComment.getCharacterOutputStream();
w.write(用于接收内容的属性);
w.flush();
w.close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询