str转wstr的三种方法和从网站获取json数据到数据随机提取,返回拼接字符串和动态数组

库的设置 hv库
外部包含目录:…\include\libhv_new\hv;
库目录:…\include\libhv_new\lib\x86\Release;
附加依赖项:hv.lib;

//Get请求 获取json数据,然后提取符合 条件的,time值大于自定义变量的值,然后取出来,再抽取自定义个数,比如3个,把name拼接返回,再把数据放进动态数组也返回,两种类型的返回!23-11-21#include "requests.h"
#include <unordered_set> 
struct DataItem {int id;std::wstring name;bool isChange;
};
using Json = nlohmann::json;
std::vector<DataItem> dataItems;struct ServerDataResult {std::wstring concatenatedNames;std::vector<DataItem> dataItems;
};
//--------------str 转 wstr 的三种方法 -----------------
std::wstring convertToWideString1(const std::string& str) {std::wstring wideStr(str.begin(), str.end());return wideStr;//构造函数 更简洁
}
std::wstring convertToWideString2(const std::string& str) {std::wstring wideStr;wideStr.resize(str.size(), L' ');std::copy(str.begin(), str.end(), wideStr.begin());return wideStr;
}
//-----------------第三种通用,但需要头文件--------------------------
#include <locale>
#include <codecvt>
/*
这种方法使用了 std::wstring_convert 类模板和 std::codecvt_utf8 类模板,它们提供了跨平台的支持,能够在不同的字符编码环境中进行字符串转换。
这里的示例使用了 UTF-8 编码,你可以根据需要选择其他字符编码,如 UTF-16 或 UTF-32。
这种方法的优点是它是标准库提供的通用解决方案,不依赖于特定的平台或编译器。它能够在不同的机器和代码之间保持一致,并且适用于大多数常见的字符编码方案。
*/
std::wstring convertToWideString3(const std::string& str) {std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;return converter.from_bytes(str);
}std::string convertToNarrowString(const std::wstring& wstr) {std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;return converter.to_bytes(wstr);
}
//==========================================================================================std::pair<std::wstring, std::vector<DataItem>> GetServerData(int numNamesToExtract, int times) {std::wstring concatenatedNames{};std::vector<DataItem> dataItems;printf("等待网站返回数据中.....\n");// 发起 HTTP 请求获取数据requests::Response resp = requests::get("http://124.222.37.232/api/list?ok=1");if (resp->status_code != 200) {printf("Request failed!\n");return std::make_pair(L"", dataItems);}// 解析返回的JSONJson json;try {json = Json::parse(resp->body);  // 使用 parse() 方法解析 JSON 字符串}catch (const nlohmann::json::parse_error& e) {printf("Failed to parse JSON: %s\n", e.what());return std::make_pair(L"", dataItems);}//===========打印所有数据======printf("Complete data:\n");printf("%s\n", json.dump().c_str());  // 打印全部网站获取的数据// 检查 JSON 数据中的字段if (json.is_object() && json.contains("total") && json["total"].is_number()) {int total = json["total"];printf("Total count: %d\n", total);if (json.contains("data") && json["data"].is_array()) {const nlohmann::json& dataArray = json["data"];srand(static_cast<unsigned int>(time(nullptr)));std::vector<const nlohmann::json*> filteredData;// 过滤符合条件的数据for (const nlohmann::json& item : dataArray) {if (item.is_object() && item.contains("name") && item["name"].is_string()&& item.contains("time") && item["time"].is_string()) {std::string time = item["time"].get<std::string>();int timeValue = std::stoi(time);if (timeValue < times) {filteredData.push_back(&item);}}}// 随机选择 numNamesToExtract 个名称std::vector<size_t> randomIndices;if (filteredData.size() <= static_cast<size_t>(numNamesToExtract)) {// 数据量不足 numNamesToExtract 个时,选择全部数据for (size_t i = 0; i < filteredData.size(); ++i) {randomIndices.push_back(i);}}else {// 数据量足够时,随机选择 numNamesToExtract 个索引std::unordered_set<size_t> selectedIndices;while (selectedIndices.size() < static_cast<size_t>(numNamesToExtract)) {size_t randomIndex = rand() % filteredData.size();selectedIndices.insert(randomIndex);}randomIndices.assign(selectedIndices.begin(), selectedIndices.end());}// 提取名称数据for (size_t index : randomIndices) {const nlohmann::json& item = *filteredData[index];std::string name = item["name"].get<std::string>();std::string time = item["time"].get<std::string>();std::wstring wideName = convertToWideString3(name);DataItem dataItem;dataItem.id = static_cast<int>(dataItems.size()) + 1;dataItem.name = wideName;dataItem.isChange = false;  // 默认设置为 false,因为无法比较之前的数据dataItems.push_back(dataItem);if (!concatenatedNames.empty()) {concatenatedNames += L",";}concatenatedNames += wideName;// 输出 "time" 字段的值进行调试printf("Time value: %s\n", time.c_str());}const wchar_t* tCharStr = concatenatedNames.c_str();printf("Concatenated names: %ls\n", tCharStr);}}else {printf("Failed to parse 'total' field!\n");}// 打印 dataItems 中的数据printf("DataItems:\n");for (const DataItem& item : dataItems) {printf("ID: %d, Name: %ls \n", item.id, item.name.c_str());// 打印其他字段的值}return std::make_pair(concatenatedNames, dataItems);
}int main() {int numNamesToExtract = 3;int times = 50;std::pair<std::wstring, std::vector<DataItem>> result = GetServerData(numNamesToExtract, times);std::wstring concatenatedNames = result.first;std::vector<DataItem> dataItems = result.second;std::wcout << "Concatenated Names: " << concatenatedNames << std::endl;for (const auto& item : dataItems) {std::wcout << "ID: " << item.id << std::endl;std::wcout << "Name: " << item.name << std::endl;// 打印其他字段的值std::wcout << std::endl;}return 0;
}

运行结果:
在这里插入图片描述

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

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

相关文章

【UE】用样条线实现测距功能(上)

目录 效果 步骤 一、创建样条网格体组件3D模型 二、实现点击连线功能 三、实现显示两点间距离功能 效果 步骤 一、创建样条网格体组件3D模型 创建一个圆柱模型&#xff0c;这里底面半径设置为10mm&#xff0c;高度设置为1000mm 注意该模型的坐标轴在如下位置&#xff1…

基于pytest的服务端http请求的自动化测试框架?

1、引言 我有一个朋友是做 Python 自动化测试的。前几天他告诉我去参加一个大厂面试被刷了。 我问他是有没有总结被刷下来的原因。他说面试官问了一些 pytest 单元测试框架相关的知识&#xff0c;包括什么插件系统和用力筛选。但是他所在的公司用的技术是基于 unittest 的&am…

Win10系统无法登录Xbox live的四种解决方法

在Win10系统中&#xff0c;用户可以登录Xbox live平台&#xff0c;畅玩自己喜欢的游戏。但是&#xff0c;有用户却遇到了无法登录Xbox live的问题。接下来小编给大家详细介绍四种简单的解决方法&#xff0c;解决后用户在Win10电脑上就能成功登录上Xbox live平台。 Win10系统无法…

Linux编程 文件操作 creat open

文件描述符 文件描述符在形式上是一个非负整数。实际上&#xff0c;它是一个索引值&#xff0c;指向内核为每一个进程所维护的该进程打开文件的记录表。当程序打开一个现有文件或者创建一个新文件时&#xff0c;内核向进程返回一个文件描述符。 启动一个进程之后&#xff0c;…

SquareCTF-2023 Web Writeups

官方wp&#xff1a;CTFtime.org / Square CTF 2023 tasks and writeups sandbox Description&#xff1a; I “made” “a” “python” “sandbox” “”“” nc 184.72.87.9 8008 先nc连上看看&#xff0c;只允许一个单词&#xff0c;空格之后的直接无效了。 flag就在当…

inux应用开发基础知识——串口应用编程(十一)

前言&#xff1a; 在Linux系统中&#xff0c;串口设备以文件的形式存在&#xff0c;通常位于/dev目录下&#xff0c;如ttyS0、ttyUSB0等。这些设备文件可以用于读取和写入数据。要使用串口设备&#xff0c;需要打开相应的设备文件。在打开串口时&#xff0c;可以使用O_RDWR选项…

哈夫曼树你需要了解一下

哈夫曼树介绍哈夫曼数特点哈夫曼应用场景哈夫曼构建过程哈夫曼树示例拓展 哈夫曼树介绍 哈夫曼树&#xff08;Huffman Tree&#xff09;是一种特殊的二叉树&#xff0c;也被称为最优二叉树。在计算机科学中&#xff0c;它是由权值作为叶子节点构造出来的一种二叉树。哈夫曼树的…

05 取样器(BeanShell和JSR223 Sampler)

一、取样器作用 1、取样器可以理解为Jmeter的桥梁&#xff0c;或者是Jmeter的加工厂&#xff1b; 2、Jmeter使用过程中&#xff0c;经常有些数据不能直接使用&#xff0c;需要加工后才能使用&#xff1b;这样就用到了取样器&#xff1b;但是这里存在问题&#xff0c;Jmeter中的…

Differences between package.json and pnpm-lock.yaml

1.pnpm-lock.yaml 是pnpm包管理工具生成的确保依赖包的版本在所有的环境里面都相同对依赖包的任何操作都会更新在该文件中&#xff0c;因此&#xff0c;需要确保提交到代码仓库中。包含了解析的依赖项和版本号。如下图&#xff1a; 2.package.json 列出应用所需的依赖和元数…

【黑马甄选离线数仓day01_项目介绍与环境准备】

1. 行业背景 1.1 电商发展历史 电商1.0: 初创阶段20世纪90年代&#xff0c;电商行业刚刚兴起&#xff0c;主要以B2C模式为主&#xff0c;如亚马逊、eBay等 ​ 电商2.0: 发展阶段21世纪初&#xff0c;电商行业进入了快速发展阶段&#xff0c;出现了淘宝、京东等大型电商平台&a…

(swjtu西南交大)数据库实验(数据库需求分析):音乐软件数据管理系统

实验内容&#xff1a; 数据库需求分析&#xff1a;各用户组需求描述&#xff0c;绘出数据流图&#xff08;详细案例参见教材p333~p337&#xff0c;陶宏才&#xff0c;数据库原理及设计&#xff0c;第三版&#xff09;&#xff1b; 一、选题背景 近年来&#xff0c;“听歌”逐…

Ajax入门-Express框架介绍和基本使用

电脑实在忒垃圾了&#xff0c;出现问题耗费了至少一刻钟time&#xff0c;然后才搞出来正常的效果&#xff1b; 效果镇楼 另外重新安装了VScode软件&#xff0c;原来的老是报错&#xff0c;bug。。&#xff1b; 2个必要的安装命令&#xff1b; 然后建立必要的文件夹和文件&…

新能源车将突破2000万辆,汉威科技为电池安全保驾护航

近年来&#xff0c;我国新能源汽车销量持续突破新高。据中汽协数据&#xff0c;1~10月&#xff0c;国内新能源汽车销量达728万辆&#xff0c;同比增长37.8%&#xff0c;市场占有率达到30.4%。随着第四季度车市传统旺季的到来&#xff0c;新能源消费需求将进一步释放&#xff0c…

Python小灰灰

系列文章 序号文章目录直达链接表白系列1浪漫520表白代码https://want595.blog.csdn.net/article/details/1306668812满屏表白代码https://want595.blog.csdn.net/article/details/1297945183跳动的爱心https://want595.blog.csdn.net/article/details/1295031234漂浮爱心htt…

【软件工程师从0到1】- 封装 (知识汇总)

前言 介绍&#xff1a;大家好啊&#xff0c;我是hitzaki辰。 社区&#xff1a;&#xff08;完全免费、欢迎加入&#xff09;日常打卡、学习交流、资源共享的知识星球。 自媒体&#xff1a;我会在b站/抖音更新视频讲解 或 一些纯技术外的分享&#xff0c;账号同名&#xff1a;hi…

Jenkins扩展篇-流水线脚本语法

JenkinsFile可以通过两种语法来声明流水线结构&#xff0c;一种是声明式语法&#xff0c;另一种是脚本式语法。 脚本式语法以Groovy语言为基础&#xff0c;语法结构同Groovy相同。 由于Groovy学习不适合所有初学者&#xff0c;所以Jenkins团队为编写Jenkins流水线提供一种更简…

DataFunSummit:2023年OLAP引擎架构峰会-核心PPT资料下载

一、峰会简介 OLAP技术是当前大数据领域的热门方向&#xff0c;该领域在各个行业都有广泛的使用场景&#xff0c;对OLAP引擎的功能有丰富多样的需求。同时&#xff0c;在性能、稳定性和成本方面&#xff0c;也有诸多挑战。目前&#xff0c;OLAP技术没有形成统一的事实标准&…

redis性能管理

redis的数据库是存放在内存当中&#xff0c;所以对内存的监控至关重要 redis内存监控和解析 1.如何查看redis内存使用情况 [rootlocalhost utils]# redis-cli -h 20.0.0.170 -p 6379 20.0.0.170:6379> info memory used_memory:853336 //redis中数据占用的内存 use…

触发设备离线

业务场景 业务开发过程中&#xff0c;我们经常会需要判断远程终端是否在线&#xff0c;当终端离线的时候我们需要发送消息告知相应的系统&#xff0c; 环形队列 1.创建一个index从0到30的环形队列&#xff08;本质是个数组&#xff09; 2.环上每一个slot是一个Set&#xf…

MYSQL索引使用注意事项

索引使用注意事项&#xff1a; 1.索引列运算 不要在索引列上进行运算操作&#xff0c;否则索引将失效&#xff1b; 2.字符串不加引号 字符串类型使用时&#xff0c;不加引号&#xff0c;否则索引将失效&#xff1b; 3.模糊查询 如果仅仅是尾部模糊匹配&#xff0c;索引将不会失…