用jsp上傳圖片檔案,存貯到欄位類型為blob的流形式代碼

來源:互聯網
上載者:User

向Mssql資料庫寫入image代碼的程式,所以我在這在寫一下用jsp怎樣向資料庫寫入影像檔。大家先在資料庫建這樣一張表,我下面的這些代碼對任何資料庫都通用,只要支援blob類型的
  只要大家將串連資料庫的參數改一下就可以了。
SQL>create table image(id int,content varchar(200),image blob);
  如果在sqlserver2000的資料庫中,可以將blob欄位換為image類型,這在SqlServer2000中是新增的。
  testimage.html檔案內容如下:
<HTML>
<HEAD>
<TITLE>Image File </TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<FORM METHOD=POST ACTION="testimage.jsp">
<INPUT TYPE="text" NAME="content"><BR>
<INPUT TYPE="file" NAME="image"><BR>
<INPUT TYPE="submit"></FORM>
<BODY>
</BODY>
</HTML>

  我們在Form的action裡定義了一個動作testimage.jsp,它的內容如下:
<%@ page contentType="text/html;charset=gb2312"%> 
<%@ page import="java.sql.*" %>
<%@ page import="java.util.*"%>
<%@ page import="java.text.*"%>
<%@ page import="java.io.*"%> 
    <html> 
    <body> 
<%Class.forName("org.gjt.mm.mysql.Driver").newInstance(); 
    String url="jdbc:mysql://localhost/mysql?user=root&password=&useUnicode=true&characterEncoding=8859_1"; 
//其中mysql為你資料庫的名字,user為你串連資料庫的使用者,password為你串連資料庫使用者的密碼,可自己改 
    Connection conn= DriverManager.getConnection(url); 
String content=request.getParameter("content");
String filename=request.getParameter("image");
FileInputStream str=new FileInputStream(filename);
String sql="insert into test(id,content,image) values(1,?,?)";
PreparedStatement pstmt=dbconn.conn.prepareStatement(sql);
pstmt.setString(1,content);
    pstmt.setBinaryStream(2,str,str.available());
  pstmt.execute();
  out.println("Success,You Have Insert an Image Successfully");
%>

下面我寫一個測試image輸出的例子看我們上面程式寫的對不對,testimageout.jsp的內容如下:
<%@ page contentType="text/html;charset=gb2312"%> 
<%@ page import="java.sql.*" %>
<%@ page import="java.util.*"%>
<%@ page import="java.text.*"%>
<%@ page import="java.io.*"%> 
<html>
<body>
<%Class.forName("org.gjt.mm.mysql.Driver").newInstance(); 
    String url="jdbc:mysql://localhost/mysql?user=root&password=&useUnicode=true&characterEncoding=8859_1"; 
//其中mysql為你資料庫的名字,user為你串連資料庫的使用者,password為你串連資料庫使用者的密碼,可自己改 
    Connection conn= DriverManager.getConnection(url); 
String sql = "select image from test where id=1";
   Statement stmt=null;
   ResultSet rs=null;
   try{
    stmt=conn.createStatement();
    rs=stmt.executeQuery(sql);
   }catch(SQLException e){}
   try {
   while(rs.next()) {
    res.setContentType("image/jpeg");
    ServletOutputStream sout = response.getOutputStream();
    InputStream in = rs.getBinaryStream(1);
    byte b[] = new byte[0x7a120];
    for(int i = in.read(b); i != -1;)
      {
        sout.write(b);
        in.read(b);
      }
      sout.flush();
      sout.close();
    }
   }
   catch(Exception e){System.out.println(e);}
  %>
  </body>
  </html>
  你運行這個程式,你就會看到剛才你寫入美麗的圖片就會顯示在你面前。怎麼樣,用jsp來試試。
  這種方法把圖片寫到資料庫中會使資料庫在短時間內容量飛漲,會影響效能的,另外一種做法將圖片存上傳到伺服器上,
  在資料庫裡只存放圖片的路徑,這是一個很好的方法。我建議大家採取後面一種方法。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.