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一样