当前位置: 技术问答>java相关
这里没有高手了吗
来源: 互联网 发布时间:2015-07-06
本文导语: 我想用jdbc取出oracle中的clob,blob,long等字段并显示在页面上 另外用页面内容插入clob,blob,long等字段 没有人解决的了吗 | long的写入 String sSql = "INSERT INTO news VALUES(?,?)"; PreparedStatemen...
我想用jdbc取出oracle中的clob,blob,long等字段并显示在页面上
另外用页面内容插入clob,blob,long等字段
没有人解决的了吗
另外用页面内容插入clob,blob,long等字段
没有人解决的了吗
|
long的写入
String sSql = "INSERT INTO news VALUES(?,?)";
PreparedStatement pstmt = con.prepareStatement(sSql);
String title=request.getParameter("bt");
String content=request.getParameter("txt1");
byte[] pic = content.getBytes("8859_1");
ByteArrayInputStream baisss = new ByteArrayInputStream(pic);
InputStreamReader bais = new InputStreamReader(baisss,"8859_1");
pstmt.setInt(1,id);
pstmt.setCharacterStream(3,bais,pic.length);
pstmt.execute();
long的读出与String一样
String sSql = "INSERT INTO news VALUES(?,?)";
PreparedStatement pstmt = con.prepareStatement(sSql);
String title=request.getParameter("bt");
String content=request.getParameter("txt1");
byte[] pic = content.getBytes("8859_1");
ByteArrayInputStream baisss = new ByteArrayInputStream(pic);
InputStreamReader bais = new InputStreamReader(baisss,"8859_1");
pstmt.setInt(1,id);
pstmt.setCharacterStream(3,bais,pic.length);
pstmt.execute();
long的读出与String一样