Android開發 新手必看篇 IO流

2021-10-07 16:24:02 字數 1117 閱讀 8021

io流:sharedpreferences

本地儲存資料

//sharedpreferences介面主要負責讀取preferences資料

// getsharedpreferences(【檔名】, 【讀寫模式】)

// 23兩種引數以不被官方推薦使用

sharedpreferences preferences=

getsharedpreferences

("user"

,mode_private)

;// 獲取讀寫資料的能力

sharedpreferences.editor editor=preferences.

edit()

;//新增資料

editor.

putint

("flag",1

);//清空所有資料

editor.

clear()

;//刪除指定key的資料

editor.

remove

("flag");

//提交資料

editor.

commit()

;

本地讀取資料
sharedpreferences preferences=

getsharedpreferences

("user"

,mode_private)

;//獲取指定key-value,getxx(【key】,【如key不存在返回的預設值】);

preferences.

getint

("flag",1

);//用來判斷是否包含指定key的資料,返回boolean

preferences.

contains

("flag");

//獲取全部的key-value,返回乙個map

preferences.

getall()

;

注:1.查詢本地儲存位置(開啟sdk-as右下角device file explorer-data-data-自己的專案名稱-shard_prefs)。

2.本地儲存的變數是唯一的,如果存在,下次儲存會被替換。

Linux學習手冊 新手必看篇 命令 cp

說明 複製檔案和目錄 語法 cp option 所需複製的檔案或目錄 目標目錄 option 說明 a 此選項通常在複製目錄時使用,它保留鏈結 檔案屬性,並複製目錄下的所有內容,等於dpr d複製時保留鏈結 符號鏈結 f覆蓋已經存在的目標檔案而不給出提示 i在覆蓋目標檔案之前給出提示,要求使用者確認...

Linux學習手冊 新手必看篇 命令 ls

說明 用於列出目前工作目錄所含之檔案及子目錄 語法 ls option 檔案 option 說明 a 列出所有檔案,包括以 開頭的隱含檔案 a a 同 a 但不列出 目前目錄 及 父目錄 c多列輸出,縱向排序 d只列出當前目錄 i輸出檔案前先輸出檔案系列號 l以單列格式列出檔案,檔案的鏈結數,所有者...

Linux學習手冊 新手必看篇 命令 more

說明 用於瀏覽檔案,可隨意上下翻動 語法 more option 檔案 option 說明 number 顯示number行 d讓more給使用者顯示提示資訊,而不是揚聲器鳴笛 l取消遇見特殊字元 l 送紙字元 時會暫停的功能 f計算行數時,以實際上的行數,而非自動換行過後的行數 p不以捲動的方式顯...