首页 > 文件存进数据库

文件存进数据库

例如word TXT excal 图片等,这些程序中经常会用到的文件,怎么把它们存到数据库中;


一般存路径,小点就序列化


可以了解一下mongodb


第一种
Python
如果你是用类似sqlalchemy这样的orm数据库

def upload_blob(file_data):
    fb = StringIO.StringIO()
    file_data.save(fb)
    filename = file_data.filename
    c_blob_id = None
    if filename:
        blob = T_Blob()
        blob.c_filename = filename
        blob.c_blob = fb.getvalue()
        db.session.add(blob)
        db.session.flush()
        c_blob_id = blob.id
    return c_blob_id
调用
    form = AddFileForm()
    if form.validate_on_submit():
        user = g.user
        c_blob_id = models.upload_blob(form.c_fj.data)

第二种 java jdbc方式插入Oracle

import java.sql.*; 
import java.io.*; 
import oracle.sql.*; 
public class IntoOracle { 
    public static void main(String[] args) { 
        try {
            DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); 
            Connection conn = OracleFactory.getOracle();
            conn.setAutoCommit(false);
            
            BLOB blob = null;
            
            PreparedStatement pstmt = conn.prepareStatement("insert into blobtest(id,b) values(?,empty_blob())"); 
            pstmt.setString(1,"50"); 
            pstmt.executeUpdate(); 
            pstmt.close(); 
            
            pstmt = conn.prepareStatement("select b from blobtest where id= ? for update"); 
            pstmt.setString(1,"50"); 
            ResultSet rset = pstmt.executeQuery(); 
            if (rset.next()) blob = (BLOB) rset.getBlob(1); 
        
            String fileName = "d:\\bjx.jpg"; 
            File f = new File(fileName); 
            FileInputStream fin = new FileInputStream(f); 
            System.out.println("file size = " + fin.available()); 
            
            pstmt = conn.prepareStatement("update blobtest set b=? where id=?"); 
            
            OutputStream ut = blob.getBinaryOutputStream(); 
            
            int count = -1, total = 0; 
            byte[] data = new byte[(int)fin.available()]; 
            fin.read(data); 
            out.write(data); 
            fin.close(); 
            out.close(); 
            
            pstmt.setBlob(1,blob); 
            pstmt.setString(2,"50"); 
            
            pstmt.executeUpdate(); 
            pstmt.close(); 
        
            conn.commit(); 
            conn.close(); 
        } catch (SQLException e) { 
            System.err.println(e.getMessage()); 
            e.printStackTrace(); 
        } catch (IOException e) { 
            System.err.println(e.getMessage()); 
        } catch (Exception e){
            e.printStackTrace();
        }
    }
}

以上

不建议直接把文件写到数据库里。你可以在数据库记录下文件的元数据,以及在硬盘中的路径。
如果是海量的小文件,可以用hadoop hdfs的mapfile格式存储。


一般是把文件储存在某个地方,然后把存储地址放在数据库中。不过小型文件的话,也可以使用二进制码的方式放入数据库。


数据库里面一般存的都是文件的路径


读成二进制,表字段也是二进制。

【热门文章】
【热门文章】