String 转Clob mysql springMVC
发布网友
发布时间:2022-04-20 16:29
我来回答
共1个回答
热心网友
时间:2022-04-14 02:44
既然你是从数据库取出CLOB字段,那么不用resultset那是用什么取出的。
如果从数据库里面取出的是CLOB字段,为什么会变成String类型呢。
String转CLOB,下面是个例子
public class TestDB {
public static void main(String[] args) {
try {
/** Loading the driver*/
Class.forName("com.oracle.jdbc.Driver");
/** Getting Connection*/
Connection con = DriverManager.getConnection("jdbc:oracle://localhost:3306/test","test","test");
PreparedStatement pstmt = con.prepareStatement("insert into Emp(id,name,description)values(?,?,?)");
pstmt.setInt(1,5);
pstmt.setString(2,"Das");
// Create a big CLOB value...AND inserting as a CLOB
StringBuffer sb = new StringBuffer(400000);
sb.append("This is the Example of CLOB ..");
String clobValue = sb.toString();
pstmt.setString(3, clobValue);
int i= pstmt.executeUpdate();
System.out.println("Done Inserted");
pstmt.close();
con.close();
// Retrive CLOB values
Connection con = DriverManager.getConnection("jdbc:oracle://localhost:3306/test","test","test");
PreparedStatement pstmt = con.prepareStatement("select * from Emp where id=5");
ResultSet rs = pstmt.executeQuery();
Reader instream = null;
int chunkSize;
if(rs.next()){
String name = rs.getString("name");
java.sql.Clob clob = result.getClob("description")
StringBuffer sb1 = new StringBuffer();
chunkSize = ((oracle.sql.CLOB)clob).getChunkSize();
instream = clob.getCharacterStream();
BufferedReader in = new BufferedReader(instream);
String line = null;
while ((line = in.readLine()) != null) {
sb1.append(line);
}
if(in != null){
in.close();
}
String clobdata = sb1.toString(); // this is the clob data converted into string
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
String 转Clob mysql springMVC
String转CLOB,下面是个例子 public class TestDB { public static void main(String[] args) { try { /** Loading the driver*/ Class.forName("com.oracle.jdbc.Driver");/** Getting Connection*/ Connection con = DriverManager.getConnection("jdbc:oracle://localhost:3306/test","test","...
在oracle数据库里怎么把char类型的字段转换成date类型
关于springmvc怎么自动把前台string类型日期字段转换成date类型 简单点处理,就是接收string,然后string转成date,就不用spring自动转换了 其实道理一样,spring帮你做这个转换跟你自己做转换区别不大 oracle数据库CLOB类型怎么转换为String?给你段参考代码,读取clob数据 import java.io.InputStream; ...