91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity3D IOS下保存和讀取資源(保存到文件夾目錄)

發布時間:2020-02-29 23:59:00 來源:網絡 閱讀:3445 作者:xiaoxuanyunmeng 欄目:游戲開發

Unity3D IOS下保存和讀取資源(保存到文件夾目錄)


using UnityEngine;
   
using System.Collections;
   
using System.IO;
   
using System;
   
   
public class NvTestSave : MonoBehaviour
   
{
   
   
   
private string showtext = "not txt has been loaded!";
   
   
   
public string JsonPath
   
    {
   
        get{
   
            string    path=null;
   
            if(Application.platform==RuntimePlatform.IPhonePlayer)
   
            {
   
                path= Application.dataPath.Substring (0, Application.dataPath.Length - 5);
   
                path = path.Substring(0, path.LastIndexOf('/'))+"/Documents/";   
   
            }
   
            else
   
            {
   
                path=Application.dataPath+"/Resource/GameData/";
   
            }
   
            return path;
   
        }    
   
    }
   
   
   
// Use this for initialization
   
void Start ()
   
{
   
SaveJson(" i love coding!!","MyText.txt");
   
StartCoroutine(WaitForRead());
   
}
   
   
   
// Update is called once per frame
   
void Update ()
   
{
   
   
   
}
   
   
   
void OnGUI()
   
{
   
GUI.Label(new Rect(10, 10, 500, 20), showtext);
   
}
   
   
   
void ShowText(string text)
   
{
   
showtext = text;
   
}
   
   
   
IEnumerator WaitForRead( )
   
    {
   
yield return new WaitForSeconds(0.5f);
   
StartCoroutine(InstanceText("MyText.txt"));
   
}
   
 //Unity3D教程手冊:www.unitymanual.com
   
IEnumerator InstanceText(string fileName)
   
    {
   
        string path="file://"+JsonPath+fileName;
   
   
   
Debug.LogError("======path:  "+path);
   
        WWW wwwText=new WWW(path);
   
        yield return wwwText;
   
Debug.LogError("======ShowText");
   
        ShowText(wwwText.text);
   
    }
   
 //Unity3D教程手冊:www.unitymanual.com
   
void  SaveJson(string txt , string filepathandname)
   
{
   
string file = JsonPath+"http://" + filepathandname;
   
   
   
StreamWriter sw;
   
FileInfo t = new FileInfo(file);
   
if(!t.Exists)
   
{
   
sw = t.CreateText();
   
}
   
else
   
{
   
sw = t.AppendText();
   
}
   
sw.WriteLine(txt);
   
sw.Close();
   
sw.Dispose();
   
}
   
}
   

   


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉禾县| 舒兰市| 丰宁| 依安县| 新蔡县| 中山市| 渝中区| 雷山县| 湛江市| 安义县| 麟游县| 绥芬河市| 霍林郭勒市| 汉中市| 永安市| 府谷县| 河南省| 丽水市| 马尔康县| 景东| 策勒县| 定兴县| 漾濞| 金塔县| 东丽区| 呼图壁县| 社旗县| 吉水县| 昌图县| 台安县| 安顺市| 正安县| 蚌埠市| 静宁县| 邛崃市| 鹤山市| 漳平市| 五家渠市| 丹江口市| 永城市| 金昌市|