Unity裡面讀取TXT格式檔案並載入裡面的的資料

2021-10-11 14:26:35 字數 619 閱讀 4864

unity裡面讀取txt格式檔案並載入裡面的的資料

using unityengine;

using system.collections;

using system.collections.generic;

using unityengine.ui;

using system.text.regularexpressions;

using system;

using random = unityengine.random;

namespace com.rainier.wangjing

if(currentitem.count <= count)

else

}for

(int i =

0; i < currentitem.count; i++

)return targetdata;}}

}

注意:我載入的txt檔案格式如下(是以「/」做的分隔)

有問題隨時溝通,謝謝!

讀取TXT配置檔案 非unity

streamreader類的方法不是靜態方法,所以要使用該類讀取檔案首先要例項化該類,在例項化時,要提供讀取檔案的路徑。我在這把檔案放在了bin目錄下,所以路徑不用寫全,很簡單,基本就是切割再切割 為了省事,我把文字寫成了這樣,冒號前面是名字什麼的,後面是具體數值 streamreader sr f...

Unity讀取Json和txt檔案操作

自己寫了一些載入json和讀取txt檔案的小方法,基本都是讀取很容易的,因為發現每次訪問什麼我都得自己重新再想在寫好麻煩啊,在這記下來以後省事哈哈哈 using system.io using system.text using unityengine public static class jso...

python 讀取txt格式配置檔案

configparser模組的常用方法 read filename 直接讀取ini檔案內容 sections 得到所有的section,並以列表的形式返回 options section 得到該section的所有option items section 得到該section的所有鍵值對 get s...