【Unity】将一串字符串保存到Unity中,保存成任意格式

  1. using UnityEngine;  
  2. using System.Collections;  
  3. using System.Xml;  
  4. using System;  
  5. using System.Text;  
  6. using System.IO;  
  7.   
  8. public class Weather : MonoBehaviour  
  9. {  
  10.     XmlDocument xmlDoc;  
  11.     // Use this for initialization  
  12.     void Start ()  
  13.     {  
  14.         xmlDoc = new XmlDocument ();  
  15.         StartCoroutine (DownXml ());  
  16.     }  
  17.       
  18.     // Update is called once per frame  
  19.     void Update ()  
  20.     {  
  21.       
  22.     }  
  23.   
  24.     IEnumerator DownXml ()  
  25.     {  
  26.         WWW www = new WWW ("http://flash.weather.com.cn/wmaps/xml/dalian.xml");  
  27.         yield return www;  
  28.         CreateFile (Application.dataPath, "myXml.xml", www.text);  
  29.   
  30.   
  31.     }  
  32.   
  33.   
  34.   
  35.     void CreateFile (string path, string name, string info)  
  36.     {  
  37.         // 文件流信息  
  38.         StreamWriter sw;  
  39.         FileInfo t = new FileInfo (path + "//" + name);  
  40.         if (!t.Exists) {  
  41.             // 如果此文件不存在则创建  
  42.             sw = t.CreateText ();  
  43.             // 以行的形式写入信息  
  44.             sw.WriteLine (info);  
  45.         } else {  
  46.             // 如果此文件存在则打开  
  47.             sw = t.AppendText ();  
  48.         }  
  49.   
  50.   
  51.         // 关闭流  
  52.         sw.Close ();  
  53.         // 销毁流  
  54.         sw.Dispose ();  
  55.   
  56.     }  
  57.   
  58.     void DeleteFile (string path, string name)  
  59.     {  
  60.         File.Delete (path + "//" + name);  
  61.        
  62.     }  
  63.   
  64.   
  65.   
  66. }  
[csharp]  view plain  copy
  1. 代码中头文件需要注意一下,涉及到IO读取文件。创建文件、删除文件、读取文件的方法我也已经封装好,Start方法中为了避免上次保存文件的残留首先删除原来的文件,然后创建文件FileName.txt ,我们也可修改文件的类型的后缀名。这里我写的是.txt ,为了完整的让中文出现在IOS与Android中所以这里给文件中写的数据是”宣雨松MOMO”,最后在OnGUI中将读取文件的文本信息显示在屏幕中,脚本保存格式为UTF-16。  
  2.   
  3. 代码中我们保存文件的路径是Application.persistentDataPath。 如果你写的路径是 Application.dataPath在编辑器中是可以正常读取,但是在IOS与Android中是无法读取的,昨天问我的那个朋友就是因为这里路径写的有问题没能成功的写入文件。 Application.persistentDataPath路径就是将文件保存在手机的沙盒中,如果在编辑器中运行本程序文件将保存在Finder-》 资源库-》Caches-》你的工程-》保存的文件 。本例的路径就是 Finder->资源库-> Caches -> txt->FileName.txt。  

你可能感兴趣的:(Unity)