首页 >数据库 >mysql教程 >利用JSP存取图片,数据库采用mysql转载_MySQL

利用JSP存取图片,数据库采用mysql转载_MySQL

WBOY
WBOY原创
2016-06-01 13:51:291061浏览

Java代码 复制代码 收藏代码利用JSP存取图片,数据库采用mysql转载_MySQL

  1. 一、数据库端操作:   
  2. 1 在mysql下建一个数据库名字叫 testpic        
  3. ===>    
  4. mysql>create database testpic;   
  5.   
  6. 2 在testpic库下建一数据表test,只有两字段    
  7. ===>    
  8. mysql>use testpic;   
  9.                                              
  10. ===>    
  11. mysql>create table test (id int, pic blob);  
一、数据库端操作:1 在mysql下建一个数据库名字叫 testpic     ===> mysql>create database testpic;2 在testpic库下建一数据表test,只有两字段 ===> mysql>use testpic;                                          ===> mysql>create table test (id int, pic blob);

二、相关的html jsp文件
**********************************************************************************************
登录界面   postblob.html
Java代码 复制代码 收藏代码利用JSP存取图片,数据库采用mysql转载_MySQL
  1. nbsp;html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">   
  2.   
  3.   
  4.   
  5. Insert title here   
  6.   
  7.   
  8.   
  9.   
  10.   
  11.   
  12.   
  13.     
  14.   
  15.     
  16.   
  17.   
  18.   
  19.   
  20.   
  21.     
  22.   
  23.     
  24.   
  25.   
  26.   
  27.   
  28.   
  29.     
  30.   
  31.       
  32.   
  33.   
  34. id 
    file
      
  35.   
  36.   
  37.   
  38.   
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title><center><form action="testblob.jsp" method="post"><table width="291" border="1">  <tr>    <td width="107">id </td>    <td width="168"><input name="id" type="text"></td>  </tr>  <tr>    <td>file</td>    <td><input name="file" type="file"></td>  </tr>  <tr>    <td><input type="submit" value="提交"></td>     </tr>
</table></form></center>

**********************************************************************************************
  readblob.jsp界面源码
Java代码 复制代码 收藏代码利用JSP存取图片,数据库采用mysql转载_MySQL
  1.     pageEncoding="UTF-8"%>   
  2.        
  3.   
  4.   
  5.     
  6. nbsp;html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">   
  7.   
  8.   
  9.   
  10. Insert title here   
  11.   
  12.   
  13.     
  14.  java.sql.Connection conn;   
  15.  ResultSet rs=null;   
  16.   Class.forName("com.mysql.jdbc.Driver").newInstance();    
  17.    conn= java.sql.DriverManager.getConnection("jdbc:mysql://localhost/testpic","root","root");    
  18.    Statement stmt=conn.createStatement();    
  19.    rs=stmt.executeQuery("select * from test where id=1");   
  20.   if(rs.next())   
  21.   {   
  22.     Blob b = rs.getBlob("pic");   
  23.       
  24.  int size =(int)b.length();   
  25.       out.print(size);   
  26.   InputStream in=b.getBinaryStream();   
  27.   byte[] by= new byte[size];   
  28.   response.setContentType("image/jpeg");    
  29.   ServletOutputStream sos = response.getOutputStream();   
  30.      int bytesRead = 0;   
  31.        while ((bytesRead = in.read(by)) != -1) {   
  32.              sos.write(by, 0, bytesRead);   
  33.           }   
  34.          in.close();   
  35.          sos.flush();   
  36.        
  37.   }   
  38.      
  39.     
  40. %>   
  41.   
  42.   
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Insert title here</title>


**********************************************************************************************
testblob.jsp界面源码
Java代码 复制代码 收藏代码利用JSP存取图片,数据库采用mysql转载_MySQL
  1.     pageEncoding="UTF-8"%>   
  2.        
  3.   
  4.   
  5.     
  6. nbsp;html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">   
  7.   
  8.   
  9.   
  10. Insert title here   
  11.   
  12.   
  13.  String id=request.getParameter("id");   
  14.  String file=request.getParameter("file");   
  15.  out.print(id);   
  16.  out.print(file);   
  17.  FileInputStream str=new FileInputStream(file);   
  18.  out.print(str.available());   
  19.    java.sql.Connection conn;    
  20.    java.lang.String strConn;    
  21.    Class.forName("com.mysql.jdbc.Driver").newInstance();    
  22.    conn= java.sql.DriverManager.getConnection("jdbc:mysql://localhost/testpic","root","root");    
  23.  String sql="insert into test(id,pic) values(?,?)";    
  24.  PreparedStatement pstmt=conn.prepareStatement(sql);    
  25.  pstmt.setString(1,id);   
  26.  pstmt.setBinaryStream(2,str,str.available());    
  27. pstmt.execute();    
  28. out.println("Success,You Have Insert an Image Successfully");   
  29.  pstmt.close();   
  30. %>    
  31. 查看图片   
  32. 返回   
  33.   
  34.  
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn