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

WBOY
リリース: 2016-06-01 13:51:29
オリジナル
1024 人が閲覧しました

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 までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート