当前位置:
首页 > Python基础教程 >
-
C#教程之unity3d c# http 请求json数据解析
1 using System.Collections; 2 using System.Collections.Generic; 3 using UnityEngine; 4 using UnityEngine.Networking; 5 using LitJson; 6 using System.IO; 7 using System.Net; 8 9 10 public class Connet : MonoBehaviour { 11 12 //private ArrayList List = new ArrayList(5); 13 //private Rect rect = new Rect(10, 50, 150, 150); 14 //请求地址,写自己的请求地址就行 15 private string url = "http://xxxxxxxxx/ApiServlet?method=list"; 16 //声明 JsonData LitJson 提供的方法 17 JsonData itemdata; 18 //新建 List 存放数据 19 private List<Item> dataBase = new List<Item>(); 20 21 IEnumerator Start() 22 { 23 24 WWW getData = new WWW(url); 25 yield return getData; 26 27 if (getData.error != null) 28 { 29 Debug.Log(getData.error); 30 } 31 else 32 { 33 Debug.Log(getData.text); 34 } 35 //把请求到的数据转换成 JsonData array 类型,并存储到itemdata里 36 itemdata = JsonMapper.ToObject(getData.text); 37 //Debug.Log(itemdata); 38 //调用 ConstructItemDatabase() 函数 39 ConstructItemDatabase(); 40 //测试数据 41 Debug.Log(dataBase[0].Name); 42 } 43 void ConstructItemDatabase() 44 { 45 //循环取数据 46 for (int i = 0; i < itemdata.Count; i++) 47 { 48 //把每个数据都添加到 dataBase 里 要和请求到的json数据对应 49 dataBase.Add(new Item((int)itemdata[i]["longId"], (int)itemdata[i]["intId"], itemdata[i]["item"].ToString())); 50 } 51 } 52 } 53 54 //新建Item类 55 public class Item 56 { 57 //定义Item内的数据 58 //固定写法 XX{ get; set; } 59 public int ID { get; set; } 60 public int IntId { get; set; } 61 public string Name { get; set; } 62 63 //接收上面的变量 64 public Item(int _longId, int _intId, string _name) 65 { 66 ID = _longId; 67 IntId = _intId; 68 Name = _name; 69 } 70 }
LitJson.dll下载地址
密码:1znp
前一段时间一直纠结unity连接数据库请求数据,浪费了不少时间。后来改用http请求,顺利拿到数据,然后就着手于解析数据,就有了这篇文章
如果大家看不懂,这里有一个视频讲的还是相当详细的
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式