最新更新 sitemap 网站制作设计本站搜索
网页设计
国外网站 韩国网站 个人主页 手提袋设计 CSS 网页特效 平面设计 网站设计 Flash CMS技巧 服装网站 php教程 photoshop 画册 服务器选用 数据库 Office
虚拟主机 域名注册 云主机 网页设计 客服QQ:8208442
当前位置:首页 > 编程开发 > jsp教程

jsp中从数据库中读取图片并保存为图片文件

日期:11-02    来源:中国设计秀    作者:cnwebshow.com

import java.sql.*;Ib6中国设计秀
import java.io.*;Ib6中国设计秀

public class WriteDB {Ib6中国设计秀
        public static void main(String[] args)  {Ib6中国设计秀
        Connection conn=null;Ib6中国设计秀
        String driver="com.MySQL.jdbc.Driver";//驱动Ib6中国设计秀
        String url="jdbc:mysql://127.0.0.1/test?useUnicode=true;characterEncoding=8859_1";// 数据库联接Ib6中国设计秀

        try{Ib6中国设计秀
               Class.forName(driver).newInstance();Ib6中国设计秀
               conn=DriverManager.getConnection(url,"root","");Ib6中国设计秀
               File file=new File(args[0]);Ib6中国设计秀
               FileInputStream fis=new FileInputStream(file);Ib6中国设计秀
               PReparedStatement pstmt=conn.prepareStatement(Ib6中国设计秀
                                "insert into picture(picture) values(?)");Ib6中国设计秀
               int bytes=(int)file.length();Ib6中国设计秀
               System.out.println(bytes);Ib6中国设计秀
   Ib6中国设计秀
               pstmt.setBinaryStream(1,fis,bytes);//1为插入的参数1,2。。。fileInStream为插入的数据,bytes为字节长度Ib6中国设计秀
               pstmt.executeUpdate();Ib6中国设计秀

               conn.close();Ib6中国设计秀
               fis.close();Ib6中国设计秀
     }catch(Exception e){Ib6中国设计秀
              System.out.println(e.getMessage());Ib6中国设计秀
     }Ib6中国设计秀
     }Ib6中国设计秀
}Ib6中国设计秀

本文引用地址:/bc/article_46666.html
网站地图 | 关于我们 | 联系我们 | 网站建设 | 广告服务 | 版权声明 | 免责声明