JDBC存取二进制文件示例

1
2
3
4
5
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
PutFile.java
import java.io.File;
import java.io.FileInputStream;
import java.sql.*;
 
 
public class PutFile {
 
 
    public static void main(String args[]) {
 
 
        Connection conn = null;
        PreparedStatement psmd = null;
        String sql = null;
 
 
        try {
            conn = ConnUtil.getConn();
            File file = new File("F:\\1.jpg");// 要转换的文件
            FileInputStream inputStream = new FileInputStream(file);// 将文件按二进制存储在一个字段内
            // CREATE TABLE images (imgname text, img bytea);
            sql = " insert into images values(?,?)";
            psmd = conn.prepareStatement(sql);
            psmd.setString(1, file.getName());
            psmd.setBinaryStream(2, inputStream, (int) file.length());         
            int rs = psmd.executeUpdate();
 
 
            if (rs < 0) {
                System.out.println("存入数据失败!!!");
            } else {
                System.out.println("存入数据成功!!!");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (psmd != null) {
            try {
                psmd.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        if (conn != null) {
            try {
                conn.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
}
GetFile.java
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.sql.*;
 
public class GetFile {
 
    public static void main(String args[]) {
 
        Connection conn = null;
        PreparedStatement psmd = null;
        String sql = null;
        OutputStream out = null;
 
        try {
            conn = ConnUtil.getConn();
            // CREATE TABLE images (imgname text, img bytea);
            sql = " SELECT img FROM images WHERE imgname = ?";
            psmd = conn.prepareStatement(sql);
            psmd.setString(1, "1.jpg");
            ResultSet rs = psmd.executeQuery();
            while(rs.next()) {
                byte[] imgBytes = rs.getBytes(1);
                // 实例化OutputStream对象,在f盘创建一个图片文件
                out = new FileOutputStream("f:\\2.jpg");
                // 将文件输出,内容则为byte数组里面的数据
                out.write(imgBytes);
                out.flush();
                System.out.println("获取数据成功!!!");       
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
 
        if (psmd != null) {
            try {
                psmd.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        if (conn != null) {
            try {
                conn.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
 
}
ConnUtil.java
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
 
public class ConnUtil {
 
    public static Connection getConn() {
        Connection conn = null;
        try {
            Class.forName("com.scistor.swift.jdbc.Driver"); // 驱动
            String url = "jdbc:swift://192.168.8.103:2345/swfit"; // 连接数据库的url
            try {
                conn = DriverManager.getConnection(url, "super", "111111"); // super 为数据库用户名,111111为密码
            } catch (SQLException e) {
                e.printStackTrace();
            }
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
 
        return conn;
    }
 
}

  

posted on   XIAO的博客  阅读(460)  评论(0编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?

导航

统计

点击右上角即可分享
微信分享提示