Unity读取本地文本txt的研究

在streamingAssets文件夹或其他文件夹下新建txt文件,

Unity读取本地文本txt的研究_第1张图片

代码部分


using System.Collections;
using System.Collections.Generic;
using System.IO; //文件处理命名空间
using UnityEngine; 
public class Test : MonoBehaviour
{
public string s;
    void Start()
    {
     string fileAddress = System.IO.Path.Combine(Application.streamingAssetsPath, "test.txt");
        FileInfo fInfo0 = new FileInfo(fileAddress);//这里写文件的绝对路径+文件名+后缀(下面这种方式也可),,用fInfo0来接收这个文件

        //FileInfo fInfo0 = new FileInfo("E:/w/Downloads/UnityProject/Json/Assets/StreamingAssets/test.txt"); 
        if (fInfo0.Exists)//判断文件是否存在
        {
            StreamReader r = new StreamReader(fileAddress);
            //StreamReader默认的是UTF8的不需要转格式了,因为有些中文字符的需要有些是要转的,下面是转成String代码
            //byte[] data = new byte[1024];
            // data = Encoding.UTF8.GetBytes(r.ReadToEnd());
            // s = Encoding.UTF8.GetString(data, 0, data.Length);
            s = r.ReadToEnd(); 
            Debug.Log(s);//获取到字符串
        }



    }
     

运行测试 

Unity读取本地文本txt的研究_第2张图片

你可能感兴趣的:(c#,Unity,unity,游戏引擎,c#)