UnityC 超簡單讀寫txt json檔案

2021-10-02 07:34:54 字數 837 閱讀 3343

超簡單的讀寫txt檔案,json檔案內容。

textasset 文字資源類(唯讀)(unity中api)

resources 用於方便的讀取unity中resources資料夾內的檔案(由於本例子是讀取resources檔案)

很簡單

//獲取resources資料夾下名為_dataname的文字檔案

textasset jsontextasset = resources.load(_dataname) as textasset;

//返回文字檔案內容

return jsontextasset.text;

public string readjsontext(string _dataname)

return null;

}

//得到檔案資訊

//清空檔案內容

//得到寫入流

//writer = flagfile.createtext();

//向流裡寫入資料。

writer.write(_filetext);

public void writejsontext(string _dataname, string _filetext, string _datapath = "resources")

else

//向流裡寫入資料。

writer.write(_filetext);

writer.flush();

writer.dispose();

writer.close();

}

設計模式一 簡單工廠模式(Unity C )

設計模式一 簡單工廠模式 說到簡單工廠模式,說明此模式是用來生產的,也就是用來建立例項,我們平常的例項化就是new乙個物件,可如果要生產多個不同的物件應該怎麼辦?我們對例項化物件進行管理,也就是說想要乙個例項,不需要在乎這個例項是如何產生的,傳入乙個型別 特定字串 特定int 等,就能收到乙個標識該...

為什麼硬碟隨機讀寫超慢,而順序讀寫超快

我們都知道硬碟順序讀寫很快,像hdd硬碟都能達到20萬每秒的iops,而隨機讀寫按照7200轉的hdd的iops在100左右,為什麼那?要搞清楚這個問題需要我們先來對磁碟有乙個基本的認識 一 磁碟的基本了解 基本的基本組成部分,磁碟主要有盤面 磁頭 懸臂組成如下圖 柱面 有上下大小相等的盤面的扇面組...

XML簡單讀寫

the autobiography of benjamin franklin benjamin franklin 8.99 the confidence man herman melville 11.99 the gorgias plato 9.99 doc.load books.xml 1 得到節...