Unity 使用INI文件存储数据或配置参数预设

法1:调用外部C++api库

具体使用:

public class Ini{//读取INI文件需要调用C++的APP[System.Runtime.InteropServices.DllImport("kernel32")]private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);[System.Runtime.InteropServices.DllImport("kernel32")]private static extern int GetPrivateProfileString(string section, string key, string def, System.Text.StringBuilder retVal, int size, string filePath);private string iPath = null;public Ini(string path){this.iPath = path;}/// <summary>/// 写数据/// </summary>/// <param name="section">配置节</param>/// <param name="key">键名</param>/// <param name="value">键值</param>public void WriteValue(string section, string key, string value){  WritePrivateProfileString(section, key, value, iPath);}/// <summary>/// 读数据/// </summary>/// <param name="section">配置节</param>/// <param name="key">键名</param>/// <returns></returns>public string ReadValue(string section, string key){// 每次从ini中读取多少字节 System.Text.StringBuilder temp = new System.Text.StringBuilder(255);        GetPrivateProfileString(section, key, "", temp, 255, iPath);return temp.ToString();}
}public class Program
{public static void Main(){string filePath = Application.streamingAssetsPath + "/file.ini";string section = "SectionName";string key = "KeyName";// 读取 INI 文件string value = Ini.ReadValue(section, key, "", filePath);Console.WriteLine("Value: " + value);// 写入 INI 文件Ini.WriteValue(section, key, "NewValue", filePath);Console.WriteLine("Value written.");// 重新读取 INI 文件value = Ini.ReadValue(section, key, "", filePath);Console.WriteLine("Value: " + value);}
}

ini文本参考:

法2:使用System.IO命名空间的类:

具体使用:

using System;
using System.Collections.Generic;
using System.IO;class IniFile
{private readonly string filePath;private readonly Dictionary<string, Dictionary<string, string>> sections;public IniFile(string filePath){this.filePath = filePath;this.sections = new Dictionary<string, Dictionary<string, string>>();Load();}public string GetValue(string section, string key){if (sections.ContainsKey(section) && sections[section].ContainsKey(key)){return sections[section][key];}return null;}public void SetValue(string section, string key, string value){if (!sections.ContainsKey(section)){sections[section] = new Dictionary<string, string>();}sections[section][key] = value;Save();}private void Load(){string currentSection = null;foreach (string line in File.ReadLines(filePath)){string trimmedLine = line.Trim();if (trimmedLine.StartsWith("[") && trimmedLine.EndsWith("]")){currentSection = trimmedLine.Substring(1, trimmedLine.Length - 2);continue;}int equalsIndex = trimmedLine.IndexOf('=');if (equalsIndex > 0){string key = trimmedLine.Substring(0, equalsIndex).Trim();string value = trimmedLine.Substring(equalsIndex + 1).Trim();if (!string.IsNullOrEmpty(currentSection) && !string.IsNullOrEmpty(key)){if (!sections.ContainsKey(currentSection)){sections[currentSection] = new Dictionary<string, string>();}sections[currentSection][key] = value;}}}}private void Save(){using (StreamWriter writer = new StreamWriter(filePath)){foreach (KeyValuePair<string, Dictionary<string, string>> section in sections){writer.WriteLine($"[{section.Key}]");foreach (KeyValuePair<string, string> entry in section.Value){writer.WriteLine($"{entry.Key}={entry.Value}");}writer.WriteLine();}}}
}public class Program
{public static void Main(){string filePath = Application.streamingAssetsPath + "/file.ini";string section = "SectionName";string key = "KeyName";IniFile iniFile = new IniFile(filePath);// 读取值string value = iniFile.GetValue("section", "key");Console.WriteLine(value);// 设置值iniFile.SetValue("Section2", "Key2", "Value2");       }
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/169894.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ELK之Logstash解析时间相差8h的问题

一、问题描述 服务器当前时间为&#xff1a;2022年 06月 28日 星期二 11:24:22 CST 而logstash解析的时间为2022-06-28T03:15:25.545Z与实际时间相差8h 一、解决办法&#xff1a; 需改logstash的配置文件&#xff1a; 原理就是&#xff1a;定义一个中间变量timestamp&…

虚幻5.3打包Windows失败

缺失UnrealGame二进制文件。 必须使用集成开发环境编译该UE项目。或者借助虚幻编译工具使用命令行命令进行编译 解决办法&#xff1a; 1.依次点击平台-项目启动程序 2.点击后面的按钮进行设置 3.稍等后&#xff0c;打包后的程序即可运行&#xff0c;之后就可以愉快的打包了

Tektronix(泰克)示波器TBS1102B测试电压

对于 Tektronix TBS1102B 示波器来说&#xff0c;测试电压的步骤基本如下&#xff1a; 连接测量点&#xff1a; 将被测电路的测量点连接到示波器的输入通道。使用正确的探头并确保连接的极性正确。 选择通道&#xff1a; 选择示波器上的通道&#xff0c;你想要测量的电压可能连…

linux_day02

1、链接&#xff1a;LN 一个点表示当前工作目录&#xff0c;两个点表示上一层工作目录&#xff1b; 目录的本质&#xff1a;文件&#xff08;该文件储存目录项&#xff0c;以链表的形式链接&#xff0c;每个结点都是目录项&#xff0c;创建文件相当于把目录项添加到链表中&…

vColorPicker与vue3-colorPicker——基于 Vue 的颜色选择器插件

文章目录 前言样例特点 一、使用步骤&#xff1f;1. 安装2.引入3.在项目中使用 vcolorpicker 二、选项三、事件四、问题反馈问题所在安装引入例子效果图 前言 vColorPicker——官网 vColorPicker——GitHub 样例 vColorPicker是基于 Vue 的一款颜色选择器插件&#xff0c;仿照…

路径总和[简单]

优质博文&#xff1a;IT-BLOG-CN 一、题目 给你二叉树的根节点root和一个表示目标和的整数targetSum。判断该树中是否存在 根节点到叶子节点的路径&#xff0c;这条路径上所有节点值相加等于目标和targetSum。如果存在&#xff0c;返回true&#xff1b;否则&#xff0c;返回fa…

竞赛选题 深度学习疲劳检测 驾驶行为检测 - python opencv cnn

文章目录 0 前言1 课题背景2 相关技术2.1 Dlib人脸识别库2.2 疲劳检测算法2.3 YOLOV5算法 3 效果展示3.1 眨眼3.2 打哈欠3.3 使用手机检测3.4 抽烟检测3.5 喝水检测 4 最后 0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; **基于深度学习加…

Vue3全局共享数据

目录 1&#xff0c;Vuex2&#xff0c;provide & inject2&#xff0c;global state4&#xff0c;Pinia5&#xff0c;对比 1&#xff0c;Vuex vue2 的官方状态管理器&#xff0c;vue3 也是可以用的&#xff0c;需要使用 4.x 版本。 相对于 vuex3.x&#xff0c;有两个重要变…

修改Android Studio默认的gradle目录

今天看了一下&#xff0c;gradle在C盘占用了40多G。我C盘是做GHOST的&#xff0c;放在这里不方便。所以就要修改。 新建目录名&#xff08;似乎无必要&#xff09; ANDROID_SDK_HOMEG:\SOFTWARES\android-sdk GRADLE_USER_HOMEG:\SOFTWARES\.gradle 修改目录 File->Setti…

Git版本控制系统之分支与标签(版本)

目录 一、Git分支&#xff08;Branch&#xff09; 1.1 分支作用 1.2 四种分支管理策略 1.3 使用案例 1.3.1 指令 1.3.2 结合应用场景使用 二、Git标签&#xff08;Tag&#xff09; 2.1 标签作用 2.2 标签规范 2.3 使用案例 2.3.1 指令 2.3.2 使用示例 一、Git分支&…

Gogs安装和部署教程-centos上

0、什么是 Gogs? Gogs 是一款极易搭建的自助 Git 服务。 Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自助 Git 服务。使用 Go 语言开发使得 Gogs 能够通过独立的二进制分发&#xff0c;并且支持 Go 语言支持的 所有平台&#xff0c;包括 Linux、Mac OS X、Windo…

Django(三、数据的增删改查、Django生命周期流程图)

文章目录 一、 基于ORM进行的CURDuser_list&#xff1a;作为主页使用路由文件urls.py配置如下&#xff1a;add.html&#xff1a;用于新增用户的数据页add页面视图函数如下:edit.html&#xff1a;修改数据的页面那么来总结一下上序所操作所用到的内容。 导入已存在的表其方式有两…