找回密码
 立即注册
查看: 501|回复: 0

【Unity】读取文件

[复制链接]
发表于 2021-7-6 16:28 | 显示全部楼层 |阅读模式
编写日期2021-07-06 10:00 星期二
<hr>读取StreamingAssets中的文件

    读取JSON表路径
public void ReadJSON{  List<EquipData> listEquip = JsonConvert.Deserializeobject<List<EquipData>>(GetFileContent("XXXXX.json"));}public string GetFileContent(string fileName){  var path = Path.Combine(Application.streamingAssetsPath,FileName);  return File.ReadAllText(@path);}
    读取文件路径
// 读取和Assets同级的文件夹中的文件string textpath = Application.dataPath+"/../EquipInfo/FileName/txtName.txt";// 读取StreamingAssets中的文件string textPath = Application.streamingAssetsPath+"/EquipInfo/FileName/txtName.txt";
    读文件

    写文件
public void CreateTxt
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-15 08:28 , Processed in 0.091173 second(s), 25 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表