做的一个demo,实现注册和登陆,解析服务器放回的数据(json),有文本和图片,然后加载到listview上显示,新手,代码风格并不是很好
2022-06-17 11:02:00 10.1MB Android Java Json
1
JSON 对象转换 JSON转换 JSON解析 解析JSON 对象之间转换,与实体转换
2022-06-14 14:31:32 124KB JSON 对象转换 JSON转换 JSON解析
1
天气查询APP,两种JSON解析方式 /** * 原始json数据解析 * */ // JSONObject jsonObject = new JSONObject(res); // String reason=jsonObject.getString("reason"); // if (reason.equals("参数不正确")){ // handler.sendEmptyMessage(1); // return; // } // JSONObject result=jsonObject.getJSONObject("result"); // JSONObject realtime=result.getJSONObject("realtime"); // JSONObject life=result.getJSONObject("life"); // JSONObject wind=realtime.getJSONObject("wind"); // String time=realtime.getString("time"); // JSONObject weather=realtime.getJSONObject("weather"); // String date=realtime.getString("date"); // dateStr=time+date; // weekStr=realtime.getString("week"); // calendarStr=realtime.getString("moon"); // windpowerStr=wind.getString("direct")+" "+wind.getString("power"); // weatherStr=weather.getString("info"); // temperatureStr=weather.getString("temperature"); // JSONObject info=life.getJSONObject("info"); // JSONArray kongtiao=info.getJSONArray("kongtiao"); // JSONArray yundong=info.getJSONArray("yundong"); // JSONArray ziwaixian=info.getJSONArray("ziwaixian"); // ACStr=kongtiao.getString(0)+" "+kongtiao.getString(1); // sportStr=yundong.getString(0)+" "+yundong.getString(1); // lightStr=ziwaixian.getString(0)+" "+ziwaixian.getString(1); /** * Gson数据解析 */ WheatherBean wheatherBean=new Gson().fromJson(res,WheatherBean.class); String reason=wheatherBean.getReason(); if (reason.equals("参数不正确")){ handler.sendEmptyMessage(1); return; } WheatherBean.ResultBean resultBean=wheatherBean.getResult(); WheatherBean.ResultBean.RealtimeBean realtimeBean=resultBean.getRealtime(); WheatherBean.ResultBean.RealtimeBean.WindBean windBean=realtimeBean.getWind(); String time=realtimeBean.getTime(); WheatherBean.ResultBean.RealtimeBean.WeatherBean weatherBean=realtimeBean.getWeather(); String date=realtimeBean.getDate(); dateStr=time+date; weekStr=realtimeBean.getWeek(); calendarStr=realtimeBean.getMoon(); windpowerStr=windBean.getDirect()+" "+windBean.getPower(); temperatureStr=weatherBean.getTemperature(); weatherStr=weatherBean.getInfo(); WheatherBean.ResultBean.LifeBean lifeBean=resultBean.getLife(); WheatherBean.ResultBean.LifeBean.InfoBean infoBean=lifeBean.getInfo(); List kongtiao=infoBean.getKongtiao(); List yundong=infoBean.getYundong(); List ziwaixian=infoBean.getZiwaixian(); ACStr=kongtiao.get(0)+" "+kongtiao.get(1); sportStr=yundong.get(0)+" "+yundong.get(1); lightStr=ziwaixian.get(0)+" "+ziwaixian.get(1); }
2022-06-08 14:51:52 28.85MB Json
1
json的c语言源码,附带Makefile,可以交叉编译成库,linux环境亲测可用。
2022-06-03 14:12:55 20KB cjson库
1
gson-master解析 gson解析,demo. 可以拿来借鉴一下,参考一下开发。
2022-06-02 22:04:44 578KB gson解析 gson 解析 json解析
Android 程序技术 本节课程内容:文件存储和JSON解析 1.1 文件存储简介 文件存储 文件存储是Android中最基本的一种数据存储方式,它与Java中的文件存储类似,都是通过I/O流的形式把数据存储到文档中。 Android中的文件存储分为内部存储和外部存储。 文件存储简介 File Storage Overview 文件存储概念 将应用程序中的数据以文件方式存储到设备的内部,当创建的应用程序被卸载时,其内部存储文件也随之被删除。 文件存储简介 File Storage Overview 内部存储 文件存储简介 File Storage Overview 内部存储—写入 String fileName = "data.txt"; String content = "helloworld"; FileOutputStream fos; try { fos = openFileOutput(fileName, MODE_PRIVATE); fos.write(content.getBytes()); fos.close(); } catch (Exception e) {
2022-05-25 09:06:14 3.44MB android json 文档资料
编译好的 windows 版的 json-c-0.8 库。压缩包里面包含三个文件夹..\include,..\lib,..\src,”lib\“下有.lib和.dll。要使用该库,需要包含 json.h, json_object.h, json_tokener.h.
2022-05-17 13:48:10 32KB json-c-0.8 windows json解析库 vs2005
1
很好用的C++ Json解析器,不依赖于boost库,使用简单,文档详细
2022-05-07 07:26:39 600KB Json C++
1
单纯解析json可提出来单独进行使用!直接调用jsontosql进行转换!
2022-05-05 08:10:15 2KB delphi json 解析json
1
集成了阿里云关于域名解析管理所有接口,可实现域名解析析记录根据本地IP进行更新,并包含XML文件的解析接口,JSON文件的解析接口,解析记录的本地LOG日志记录接口,可根据接口函数进行二次开发
1