try{ 
String xmlFile = "/usr/local/tomcat/webapps/vehicles/test.xml"; 
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 
String dburl="jdbc:oracle:thin:@192.168.15.250:1521:ycdb"; 
Connection con=DriverManager.getConnection(dburl,"training","deep1704sea"); 
Statement stmt=con.createStatement(); 
//使用流读取CLOB或BLOB列 
strSql = "select xmlgen.getxml('select * from account_holder where id_no=''0001''') from dual "; 
ResultSet rs=stmt.executeQuery(strSql); 
if(rs.next()){ 
CLOB clob = ((OracleResultSet)rs).getCLOB(1); 
if(clob!=null){ 
Reader is = clob.getCharacterStream(); 
BufferedReader br = new BufferedReader(is); 
String s = br.readLine(); 
while(s!=null){ 
//byte[] temp = s.getBytes("iso-8859-1"); 
//s = new String(temp); 
content += s; 
s=br.readLine(); 
} 
} 
} 
//out.println(content); 
//将从数据库中读出的内容写到文件中 
FileOutputStream fo = new FileOutputStream(xmlFile); 
PrintStream so = new PrintStream(fo); 
so.println(content); 
so.close(); 
rs.close(); 
stmt.close(); 
con.close(); 
}catch(Exception e){ 
out.println(e); 
} 
%>