Unity3D 本地数据持久化几种方式
下面介绍几种 Unity本地记录存储的实现方式。
第一种 Unity自身提供的 PlayerPrefs
//保存数据
-
PlayerPrefs.SetString("Name",mName);
-
PlayerPrefs.SetInt("Age",mAge);
-
PlayerPrefs.SetFloat("Grade",mGrade)
//读取数据
-
mName=PlayerPrefs.GetString("Name","DefaultValue");
-
mAge=PlayerPrefs.GetInt("Age",0);
-
mGrade=PlayerPrefs.GetFloat("Grade",0F);
//清除所有记录
PlayerPrefs.DeleteAll();
//删除其中某一条记录
PlayerPrefs.DeleteKey("Age");
//将记录写入磁盘
PlayerPrefs.Save()
第二种 BinaryFormatter 二进制序列化
假设有一个Player类
-
[System. Serializable]
-
public class Player
-
{
-
public int health;
-
public int power;
-
public Vector3 position;
-
}
由于BinaryFormatter序列化不支持Unity的Vector3类型,所以我们需要做一下包装。
-
public class PlayerData{
-
-
public int level;
-
public int health;
-
public float[] position;
-
-
public PlayerData(Player player)
-
{
-
this.level = player.level;
-
this.health = player.health;
-
this.position = new float[3];
-
this.position[0] = player.transform.position.x;
-
this.position[1] = player.transform.position.y;
-
this.position[2] = player.transform.position.z;
-
}
-
}
我们对PlayerData进行保存和读取。读取出来的PlayerData可以赋给Player。
-
public static class SaveSystem{
-
//保存数据
-
public static void SavePlayer(Player player)
-
{
-
BinaryFormatter formatter = new BinaryFormatter();
-
string path = Application.persistentDataPath+"/player.fun";
-
FileStream stream = new FileStream(path,FileMode.Create);
-
PlayerData data = new PlayerData(player);
-
formatter.Serialize(stream,data);
-
stream.Close();
-
}
-
-
//读取数据
-
public static PlayerData LoadPlayer()
-
{
-
string path = Application.persistentDataPath+"/player.fun";
-
if(File.Exists(path))
-
{
-
BinaryFormatter formatter = new BinaryFormatter();
-
FileStream stream = new FileStream(path,FileMode.Open);
-
PlayerData data = formatter.Deserialize(stream) as PlayerData;
-
stream.Close();
-
return data;
-
}else{
-
Debug.LogError("Save file not found in "+path);
-
return null;
-
}
-
}
-
}
第三种 保存为json格式的文本文件
使用 Unity 自身API JsonUtility。
保存数据
-
public static void SavePlayerJson(Player player)
-
{
-
string path = Application.persistentDataPath+"/player.json";
-
var content = JsonUtility.ToJson(player,true);
-
File.WriteAllText(path,content);
-
}
读取数据
-
public static PlayerData LoadPlayerJson()
-
{
-
string path = Application.persistentDataPath+"/player.json";
-
if(File.Exists(path)){
-
var content = File.ReadAllText(path);
-
var playerData = JsonUtility.FromJson<PlayerData>(content);
-
return playerData;
-
}else{
-
Debug.LogError("Save file not found in "+path);
-
return null;
-
}
-
}
第四种 XmlSerializer进行串行化
假如有类
-
public class Entity
-
{
-
public Entity()
-
{
-
}
-
public Entity(string c, string f)
-
{
-
name = c;
-
school = f;
-
}
-
public string name;
-
public string school;
-
}
读取数据
-
List<Entity> entityList=null;
-
XmlSerializer xs = new XmlSerializer(typeof(List<Entity>));
-
using (StreamReader sr = new StreamReader(configPath))
-
{
-
entityList = xs.Deserialize(sr) as List<Entity>;
-
}
保存数据
-
List<Entity> entityList=null;
-
XmlSerializer xs = new XmlSerializer(typeof(List<Entity>));
-
using (StreamWriter sw = File.CreateText(configPath))
-
{
-
xs.Serialize(sw, entityList);
-
}
对应的xml文件为:
-
<?xml version="1.0" encoding="utf-8"?>
-
<ArrayOfEntity xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-
<Entity>
-
<Name>Alice</Name>
-
<School>SJTU</School>
-
</Entity>
-
<Entity>
-
<Name>Cici</Name>
-
<School>CSU</School>
-
</Entity>
-
<Entity>
-
<Name>Zero</Name>
-
<School>HIT</School>
-
</Entity>
-
</ArrayOfEntity>
Unity3D 本地数据持久化几种方式的更多相关文章
- ios网络学习------4 UIWebView的加载本地数据的三种方式
ios网络学习------4 UIWebView的加载本地数据的三种方式 分类: IOS2014-06-27 12:56 959人阅读 评论(0) 收藏 举报 UIWebView是IOS内置的浏览器, ...
- iOS --- UIWebView的加载本地数据的三种方式
UIWebView是IOS内置的浏览器,可以浏览网页,打开文档 html/htm pdf docx txt等格式的文件. safari浏览器就是通过UIWebView做的. 服务器将MIM ...
- Linux就这个范儿 第15章 七种武器 linux 同步IO: sync、fsync与fdatasync Linux中的内存大页面huge page/large page David Cutler Linux读写内存数据的三种方式
Linux就这个范儿 第15章 七种武器 linux 同步IO: sync.fsync与fdatasync Linux中的内存大页面huge page/large page David Cut ...
- python爬虫---爬虫的数据解析的流程和解析数据的几种方式
python爬虫---爬虫的数据解析的流程和解析数据的几种方式 一丶爬虫数据解析 概念:将一整张页面中的局部数据进行提取/解析 作用:用来实现聚焦爬虫的吧 实现方式: 正则 (针对字符串) bs4 x ...
- Solr 删除数据的几种方式
原文出处:http://blog.chenlb.com/2010/03/solr-delete-data.html 有时候需要删除 Solr 中的数据(特别是不重做索引的系统中,在重做索引期间).删除 ...
- SparkStreaming获取kafka数据的两种方式:Receiver与Direct
简介: Spark-Streaming获取kafka数据的两种方式-Receiver与Direct的方式,可以简单理解成: Receiver方式是通过zookeeper来连接kafka队列, Dire ...
- SparkStreaming与Kafka,SparkStreaming接收Kafka数据的两种方式
SparkStreaming接收Kafka数据的两种方式 SparkStreaming接收数据原理 一.SparkStreaming + Kafka Receiver模式 二.SparkStreami ...
- 【代码笔记】iOS-向服务器传JSON数据的两种方式
一,代码. - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. ...
- .NET MVC控制器向视图传递数据的四种方式
.NET MVC控制器向视图传递数据的四种方式: 1.ViewBag ViewBag.Mvc="mvc"; 2.ViewData ViewBag["Mvc"] ...
随机推荐
- 从零搭建springboot服务01-初始搭建、内嵌swagger
愿历尽千帆,归来仍是少年 1.基础springBoot框架 编辑工具:IDEA.jdk1.8.tomcat8.maven3.3.9 编码格式:UTF-8 参考文献:https://www.cnblog ...
- JEP 尝鲜系列 3 - 使用虚线程进行同步网络 IO 的不阻塞原理
相关 JEP: JEP 353 Reimplement the Legacy Socket API JEP 373 Reimplement the Legacy DatagramSocket API ...
- ES6中函数参数默认值问题
参数默认值 // 以前的参数默认值写法 let fn = (a, b) => { a = typeof a === "undefined" ? 10 : a b = type ...
- Git工作中的使用
Git工作中的使用 2019-01-16 14:29:31 雯雯木 阅读数 207更多 分类专栏: 自动化测试 版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出 ...
- 使用shell+python脚本实现系统监控并发送邮件
1.编辑shell脚本 [root@web03 ~/monitor_scripts]# cat inspect.sh #!/bin/bash # 设置磁盘的阀值 disk_max=90 # 设置监控i ...
- IT菜鸟之网线制作
网线是属于OSI七层模型中的物理层:网络中的数据传输媒介 备注:OSI七层模型后面会记录 网线制作所需要的资源素材: 1.网线 2.水晶头(类型:电话线RJ11,宽带线RJ45) 3.网线钳(非必需) ...
- docker,docker-compose,harbor安装
安装docker-ce 下载docker-ce.repo: wget -O /etc/yum.repos.d/docker-ce.repo https://download.docker.com/li ...
- mysql的日志文件及其作用
MySQL中有七种日志文件,分别是: 重做日志(redo log) 回滚日志(undo log) 二进制日志(binlog) 中继日志(relay log) 错误日志(errorlog) 慢查询日志( ...
- 【无人机航空摄影测量精品教程】目录:摄影测量、Pix4d、EPS、CC、PhotoScan项目化作业流程及注意事项汇总
目录 1. 专栏简介 2. 专栏地址 3. 专栏目录 1. 专栏简介 该专栏为目前最为热门的无人机航测内外业项目,主要内容包括:无人机航测外业作业流程(像控点布设.航线规划.仿地飞行.航拍)和内业数据 ...
- Crontab 的使用方法
第1列分钟1-59第2列小时1-23(0表示子夜)第3列日1-31第4列月1-12第5列星期0-6(0表示星期天)第6列要运行的命令 下面是crontab的格式:分 时 日 月 星期 要运行的命令 这 ...