安卓資料操作

2021-10-21 01:13:23 字數 1056 閱讀 9367

1、sharedpreferences

儲存資料

sharedpreferences sp = getsharedpreferences (

"data"

, mode_private)

;editor editor = sp . edit o ;

editor.

putstring

("name","傳暫播客")

;editor.

putint

("age",8

);editor.

commit()

;取出資料

sharedpreferences sp = context.

getsharedpreferences()

;string data = sp.

getstring

("name",""

); i

編輯資料

sharedpreferences sp=context.getsharedpreferences o;

editor editor=sp.edito;

editor.

remove

("name");

editor.

clear()

;editor.commito;

2、內部儲存

獲取io流

openfileinput

(filename)

;openfileoutput

(filename,mode)

//mode:

//mode_private:代表自己本程式可以使用

//mode_world_writeable:可以被其他程式讀寫,

4、xml序列化和解析

xml序列化

5、sqlite資料庫簡介

sqlit是乙個輕量級資料庫,第乙個版本誕生於2023年5月。它最初是

為嵌入式設計的,占用資源非常低,在記憶體中只需要占用幾百kb的儲存

空間。

安卓監聽方法耗時操作 安卓資料採集操作方法渠道經理

安卓資料採集操作方法渠道經理,領域條碼用心服務,我們擁有創新的精神 強大的研發團隊 先進的管理手段 專業的服務理念,贏得了客戶的信賴與支援。安卓資料採集操作方法渠道經理,nls mt60可攜式資料採集器內建安卓作業系統,多種無線通訊方式。豐富的功能配置nls mt60可攜式資料採集器產品簡介內建安卓...

安卓例項 手勢操作

一.實現效果 當我們在螢幕上滑動時就能改變 我用的軟體滑鼠錄不進去 二.涉及知識點 1 線性布局 linearlayout 2 影象檢視 imageview 3 單點觸控事件 motionevent 三.實現步驟 1.布局檔案 因為我們只是做滑動切換,所以只需要乙個簡單的布局 2.主介面類 publ...

安卓檔案的操作總結

安卓的檔案操作 刪除 file file new file funpath.getcapturetimppath deletefile file 這裡的funpath.getcapturetimppath 是資料夾的位址 其中 deletefile的具體實現如下 public void delete...