程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL操作blob的經驗研討

MySQL操作blob的經驗研討

編輯:MySQL綜合教程

以下的文章主要講述的是MySQL操作blob的經驗研討,如果你在MySQL操作blob的實際操作中有不解之處時,你可以通過以下的文章對其的實際應用與功能有所了解,下面是文章的具體介紹,望你浏覽完以下的內容會有所收獲。

jsp(SUN企業級應用的首選)+MySQL(和PHP搭配之最佳組合) 記住 要用MySQL(和PHP搭配之最佳組合)的longblob類型來存默認的MySQL操作blob大小不夠

數據庫字段:id char) pic longblob)

轉載請注明出處,這時我與我的知己的合作的結過

原來操作blob字段時都要先差個空值,在查blob,好麻煩,用prepareStatment就不用那麼麻煩了,哈哈

postblob.heml頁面

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xml(標准化越來越近了)ns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5. <title>無標題文檔</title> 
  6. </head> 
  7. <body> 
  8. <form action="testblob.jsp(SUN企業級應用的首選)" method="post" > 
  9. <table width="291" border="1"> 
  10. <tr> 
  11. <td width="107">id </td> 
  12. <td width="168"><input name="id" type="text" /></td> 
  13. </tr> 
  14. <tr> 
  15. <td>file</td> 
  16. <td><input name="file" type="file" /></td> 
  17. </tr> 
  18. <tr> 
  19. <td><input type="submit" value="提交"/></td> 
  20. </tr> 
  21. </table> 
  22. </form> 
  23. </body> 
  24. </html> 
  25. testblob.jsp(SUN企業級應用的首選)  
  26. <%@ page contentType="text/html;charset=gb2312"%>   
  27. <%@ page import="java.sql.*" %> 
  28. <%@ page import="java.util.*"%> 
  29. <%@ page import="java.text.*"%> 
  30. <%@ page import="java.io.*"%>   
  31. <html xml(標准化越來越近了)ns="http://www.w3.org/1999/xhtml"> 
  32. <head> 
  33. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  34. <title>無標題文檔</title> 
  35. </head> 
  36. <body> 
  37. <%   
  38. String id=request.getParameter("id");  
  39. String file=request.getParameter("file");  
  40. out.print(id);  
  41. out.print(file);  
  42. FileInputStream str=new FileInputStream(file);  
  43. out.print(str.available());  
  44. java.sql.Connection conn;   
  45. java.lang.String strConn;   
  46. Class.forName("org.gjt.mm.MySQL(和PHP搭配之最佳組合).Driver").newInstance();   
  47. conn= java.sql.DriverManager.getConnection("jdbc:MySQL(和PHP搭配之最佳組合)://localhost/test","root","");   
  48. String sql="insert into test(id,pic) values(?,?)";   
  49. PreparedStatement pstmt=conn.prepareStatement(sql);   
  50. pstmt.setString(1,id);  
  51. pstmt.setBinaryStream(2,str,str.available());   
  52. pstmt.execute();   
  53. out.println("Success,You Have Insert an Image Successfully");  
  54. pstmt.close();  
  55. %>   
  56. <a href="readblob.jsp(SUN企業級應用的首選)">查看圖片</a> 
  57. <a href="postblob.html">返回</a> 
  58. </body> 
  59. </html> 
  60. readblob.jsp(SUN企業級應用的首選)  
  61. <%@ page contentType="text/html;charset=gb2312"%>   
  62. <%@ page import="java.sql.*, javax.sql.*" %> 
  63. <%@ page import="java.util.*"%> 
  64. <%@ page import="java.text.*"%> 
  65. <%@ page import="java.io.*"%>   
  66. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  67. <html xml(標准化越來越近了)ns="http://www.w3.org/1999/xhtml"> 
  68. <head> 
  69. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  70. <title>無標題文檔</title> 
  71. </head> 
  72. <body> 
  73. <%  
  74. java.sql.Connection conn;  
  75. ResultSet rs=null;  
  76. Class.forName("org.gjt.mm.MySQL(和PHP搭配之最佳組合).Driver").newInstance();   
  77. conn= java.sql.DriverManager.getConnection("jdbc:MySQL(和PHP搭配之最佳組合)://localhost/test","root","");   
  78. Statement stmt=conn.createStatement();   
  79. rs=stmt.executeQuery("select * from test where id='1'");  
  80. if(rs.next())  
  81. {  
  82. Blob b = rs.getBlob("pic");  
  83. int size =(int)b.length();  
  84. out.print(size);  
  85. InputStream in=b.getBinaryStream();  
  86. byte[] by= new byte[size];  
  87. response.setContentType("image/jpeg");   
  88. ServletOutputStream sos = response.getOutputStream();  
  89. int bytesRead = 0;  
  90. while ((bytesRead = in.read(by)) != -1) {  
  91. sos.write(by, 0, bytesRead);  
  92. }  
  93. in.close();  
  94. sos.flush();  
  95. }  
  96. %> 
  97. </body> 
  98. </html> 

注意:在用sos.write(by, 0, bytesRead);時,該方法把inputstream中的內容在一個新的頁面中輸出,

如果本頁中還有別的內容要輸出的話,只有把上述方法改為,bytesRead = in.read(by)) ;

再用out.print(new String(by));方法輸出結果,注意在這裡不能用by.toString()方法,該方法返回的是要輸出內容的內存地址。MySQL(和PHP搭配之最佳組合)中有MySQL操作blob textarea類型大小了66536基本上放點小的東東就足夠了,哈哈,但是現在的數碼pic越來越大就只能用longblob了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved