91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用beego?orm在postgres中存儲圖片

發布時間:2023-04-25 17:21:32 來源:億速云 閱讀:104 作者:iii 欄目:開發技術

這篇文章主要介紹“怎么使用beego orm在postgres中存儲圖片”,在日常操作中,相信很多人在怎么使用beego orm在postgres中存儲圖片問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么使用beego orm在postgres中存儲圖片”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Postgres如何存儲文件

postgres提供了兩種不同的方式存儲二進制,要么是使用bytea類型直接存儲二進制,要么就是使用postgres的LargeObject功能;決定使用哪中方式更加適合你,就需要了解這兩種存儲方式有哪些限制

bytea類型

bytea類型在單列中雖然可以支持1GB的容量,但是還是不建議使用bytea去儲存比較大的對象,因為它會占用大量的內存

下面通過一個例子來說明,假如現在要在一個表中存儲圖片名和該圖片的數據,創建表如下:

CREATE TABLE images (imgname text, img bytea);

在表中插入一張圖片:

File file = new File("myimage.gif");
FileInputStream fis = new FileInputStream(file);
PreparedStatement ps = conn.prepareStatement("INSERT INTO images VALUES (?, ?)");
ps.setString(1, file.getName());
ps.setBinaryStream(2, fis, file.length());
ps.executeUpdate();
ps.close();
fis.close();

上面的setBinaryStream就會將圖片內容設置到img字段上面,也可以使用setBytes()直接設置圖片的內容

接下來,從表中取出圖片,代碼如下:

PreparedStatement ps = con.prepareStatement("SELECT img FROM images WHERE imgname = ?");
ps.setString(1, "myimage.gif");
ResultSet rs = ps.executeQuery();
if (rs != null) {
    while (rs.next()) {
        byte[] imgBytes = rs.getBytes(1);
        // use the data in some way here
    }
    rs.close();
}
ps.close();

Large Object

Large Object就可以存儲大文件,存儲的方式是在單獨的一張表中存儲大文件,然后通過oid在當前表中進行引用;下面通過一個例子來解釋:

CREATE TABLE imageslo (imgname text, imgoid oid);

首先是創建一張表,該表中第二個字段類型為oid,之后就是通過該字段引用大文件對象;下面我們在表中插入一張圖片:

// All LargeObject API calls must be within a transaction block
conn.setAutoCommit(false);
// Get the Large Object Manager to perform operations with
LargeObjectManager lobj = ((org.postgresql.PGConnection)conn).getLargeObjectAPI();
// Create a new large object
int oid = lobj.create(LargeObjectManager.READ | LargeObjectManager.WRITE);
// Open the large object for writing
LargeObject obj = lobj.open(oid, LargeObjectManager.WRITE);
// Now open the file
File file = new File("myimage.gif");
FileInputStream fis = new FileInputStream(file);
// Copy the data from the file to the large object
byte buf[] = new byte[2048];
int s, tl = 0;
while ((s = fis.read(buf, 0, 2048)) > 0) {
    obj.write(buf, 0, s);
    tl += s;
}
// Close the large object
obj.close();
// Now insert the row into imageslo
PreparedStatement ps = conn.prepareStatement("INSERT INTO imageslo VALUES (?, ?)");
ps.setString(1, file.getName());
ps.setInt(2, oid);
ps.executeUpdate();
ps.close();
fis.close();

在代碼中需要使用lobp.open打開一個大文件,然后將圖片的內容寫入這個對象當中;下面從大文件對象中讀取這個圖片:

// All LargeObject API calls must be within a transaction block
conn.setAutoCommit(false);
// Get the Large Object Manager to perform operations with
LargeObjectManager lobj = ((org.postgresql.PGConnection)conn).getLargeObjectAPI();
PreparedStatement ps = con.prepareStatement("SELECT imgoid FROM imageslo WHERE imgname = ?");
ps.setString(1, "myimage.gif");
ResultSet rs = ps.executeQuery();
if (rs != null) {
    while (rs.next()) {
        // Open the large object for reading
        int oid = rs.getInt(1);
        LargeObject obj = lobj.open(oid, LargeObjectManager.READ);
        // Read the data
        byte buf[] = new byte[obj.size()];
        obj.read(buf, 0, obj.size());
        // Do something with the data read here
        // Close the object
        obj.close();
    }
    rs.close();
}
ps.close();

需要注意的是,對于Large Object的操作都需要放在一個事務(Transaction)當中;如果要刪除大文件所在行,在刪除這行之后,還需要再執行刪除大文件的操作

注:使用Large Object會有安全問題,連接到數據庫的用戶,即便沒有包含大對象所在列的權限,也可以操作這個大對象

Beego orm如何存儲圖片

看完上面的postgres對于圖片的存儲,再來看下如何使用beego orm存儲一張圖片;在beego orm中支持了go的所有基礎類型,但是不支持slice;所以,不能直接將[]byte映射到bytea字段上面

好在beego orm提供了一個Fielder接口,可以自定義類型,接口定義如下:

// Fielder define field info
type Fielder interface {
    String() string
    FieldType() int
    SetRaw(interface{}) error
    RawValue() interface{}
}

所以,現在就需要定義一個字節數組的類型,然后實現這些接口就好了,代碼如下:

type ByteArrayField []byte
// set value 
func (e *ByteArrayField) SetRaw(value interface{}) error {
    if value == nil {
        return nil
    }
    switch d := value.(type) {
    case []byte:
        *e = d
    case string:
        *e = []byte(d)
    default:
        return fmt.Errorf("[ByteArrayField] unsupported type")
    }
    return nil
}
func (e *ByteArrayField) RawValue() interface{} {
    return *e
}
// specified type
func (f *ByteArrayField) FieldType() int {
    return orm.TypeTextField
}
func (f *ByteArrayField) String() string {
    return string(*f)
}

然后,我們就可以在struct中進行映射了,如下:

type ImageModel struct{
    ImageName string `orm:"column(image_name)"`
    ImageData ByteArrayField `orm:"column(image_data);type(bytea)"`
}

這樣就可以使用orm的接口操作imageModel,向數據庫插入圖片,或者從數據庫讀出圖片的內容了

到此,關于“怎么使用beego orm在postgres中存儲圖片”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新丰县| 潜山县| 新兴县| 吉安县| 四会市| 永城市| 仁怀市| 渭源县| 宁安市| 海原县| 屯门区| 荣昌县| 德保县| 安义县| 文昌市| 潮安县| 长葛市| 安远县| 博罗县| 嘉兴市| 西充县| 陇川县| 德保县| 六枝特区| 贵州省| 金华市| 泊头市| 年辖:市辖区| 濮阳市| 奉节县| 阜宁县| 蓝田县| 武乡县| 洛扎县| 鞍山市| 横峰县| 红原县| 山东省| 孝感市| 辽阳县| 宜州市|