亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Unity讀取Excel文件轉換XML格式文件的方法

發布時間:2020-06-23 09:34:33 來源:億速云 閱讀:213 作者:清晨 欄目:開發技術

不懂Unity讀取Excel文件轉換XML格式文件的方法?其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。

此方法用到excel.dll

下載連接 點擊打開鏈接

using System.Collections.Generic;
using UnityEngine;
using System.IO;
using System.Xml;
using Excel;
using System.Data;
 
/// <summary>
/// 創建XML表
/// </summary>
public class CreateXML : MonoBehaviour
{
 /// <summary>
 /// 表頭
 /// </summary>
 public const string xmlRoot = "FZW_MASK_XML_TABLE";
 
 //Excel名字
 public string ExcelPathName;
 
 //xml文件路徑;
 private string Path;
 //表文件名
 public string xmlName = "XMLTABLE.xml";
 //表名
 public string xmlTabeName = "XMLTABLE";
 
 //第一行字段
 private string[] tableTop;
 
 //表List
 private List<string[]> tableList=new List<string[]>();
 
 
 private void Awake()
 {
  //設置路徑
  Path = Application.streamingAssetsPath + "/XMLTable/" + xmlName;
 
  //讀取Excel
  ReadExcel(ExcelPathName);
 }
 
 
 /// <summary>
 /// 讀Excel
 /// </summary>
 /// <param name="ExcelPath"></param>
 /// <returns></returns>
 public void ReadExcel(string ExcelPath)
 {
  //excel文件位置 /MaskGame/ReadExcel/excel文件名
  FileStream stream = File.Open(Application.dataPath + "/MaskGame/ReadExcel/" + ExcelPath, FileMode.Open, FileAccess.Read);
  IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
 
  DataSet result = excelReader.AsDataSet();
 
  int rows = result.Tables[0].Rows.Count;//獲取行數(多少行信息)
  int columns = result.Tables[0].Columns.Count;//獲取列數(多少列字段)
  
  
  //初始化字段
  tableTop = new string[columns];
  
 
  //存字段
  for (int i = 0; i < columns; i++)
  {
   tableTop[i]= result.Tables[0].Rows[0][i].ToString();
  }
 
  //從第二行開始讀 讀信息
  for (int i = 1; i < rows; i++)
  {
   //臨時表
   string[] table = new string[columns];
   //賦值表信息
   for (int j = 0; j < columns; j++)
   {
    string nvalue = result.Tables[0].Rows[i][j].ToString();
    table[j] = nvalue; 
   }
   //添加到List
   tableList.Add(table);
  }
 }
 
 /// <summary>
 /// 創建表格
 /// </summary>
 private void CreateXMLTable()
 {
  //路徑錯誤
  if (File.Exists(Path)) return;
 
  //xml對象;
  XmlDocument xmll = new XmlDocument();
  //跟節點
  XmlElement Root = xmll.CreateElement(xmlRoot);
 
  for (int i = 0; i < tableList.Count; i++)
  {
   XmlElement xmlElement = xmll.CreateElement(xmlTabeName);
   xmlElement.SetAttribute(tableTop[0], tableList[i][0]);
 
   for (int j = 0; j < tableTop.Length-1; j++)
   {
    XmlElement infoElement = xmll.CreateElement(tableTop[j + 1]);
    infoElement.InnerText = tableList[i][j + 1];
    xmlElement.AppendChild(infoElement);
   }
   Root.AppendChild(xmlElement);
  }
 
  xmll.AppendChild(Root);
  xmll.Save(Path);
 
 }
 
 void OnGUI()
 {
  if (GUI.Button(new Rect(200, 200, 500, 500), "創建XML表"))
  {
   CreateXMLTable();
   Debug.Log("創建成功: " + Path);
  }
  
 }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享Unity讀取Excel文件轉換XML格式文件的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

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

AI

滨州市| 江达县| 万源市| 西宁市| 永登县| 林口县| 平谷区| 南丹县| 丽水市| 库车县| 抚远县| 勐海县| 手游| 江门市| 石家庄市| 确山县| 镇坪县| 鹿泉市| 赣榆县| 益阳市| 金阳县| 洪雅县| 马关县| 托里县| 永登县| 图片| 洛南县| 马公市| 西畴县| 稻城县| 黄石市| 客服| 西林县| 桐城市| 昔阳县| 都江堰市| 于都县| 岑巩县| 乌拉特后旗| 双牌县| 卓尼县|