這篇文章主要講解了“Android中如何利用LitePal操作數(shù)據(jù)庫(kù)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Android中如何利用LitePal操作數(shù)據(jù)庫(kù)”吧!
成都創(chuàng)新互聯(lián)公司主營(yíng)玄武網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都App定制開(kāi)發(fā),玄武h5小程序制作搭建,玄武網(wǎng)站營(yíng)銷推廣歡迎玄武等地區(qū)企業(yè)咨詢
1、把圖片轉(zhuǎn)換為字節(jié)
private byte[]img(Bitmap bitmap){ ByteArrayOutputStream baos = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); return baos.toByteArray(); }
2、把圖片存儲(chǔ)到數(shù)據(jù)庫(kù)
假設(shè)獲取的圖片為bitmap,數(shù)據(jù)庫(kù)有一張User表,存儲(chǔ)的屬性為byte[]headshot
public class User extends DataSupport { private byte[] headshot;//頭像 public User(){ super(); } public User(byte[]headshot){ super(); this.headshot=headshot; } public byte[] getHeadshot() { return headshot; } public void setHeadshot(byte[] headshot) { this.headshot = headshot; } }
對(duì)圖片進(jìn)行保存
//獲取到圖片 Bitmap headShot=BitmapFactory.decodeFile(imagePath); //把圖片轉(zhuǎn)換字節(jié)流 byte[]images=img(headShot); //找到用戶 User users=DataSupport.findFirst(User.class); //保存 users.setHeadshot(images); users.save();
4、獲取圖片
User mUser=DataSupport.findFrist(User.class); byte[]images=mUser.getHeadshot(); Bitmap bitmap=BitmapFactory.decodeByteArray(images,0,images.length);
感謝各位的閱讀,以上就是“Android中如何利用LitePal操作數(shù)據(jù)庫(kù)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Android中如何利用LitePal操作數(shù)據(jù)庫(kù)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!