> 데이터 베이스 > MySQL 튜토리얼 > 利用JSP存取图片,数据库采用mysql转载_MySQL

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

WBOY
풀어 주다: 2016-06-01 13:51:29
원래의
1059명이 탐색했습니다.

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.  
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿