rapidJson输出时 保留小数位

2024-04-03 07:08

本文主要是介绍rapidJson输出时 保留小数位,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

pretty_writer.SetMaxDecimalPlaces(4);

这个真好用,它使用gresu, 尽可能给你处理最接近的精度,并按要求输出小数位。


#include <string>
#include <fstream>
#include <iostream>#include <QMessageBox>
#include <QString>#include "rapidjson/document.h"
#include "rapidjson/filereadstream.h"
#include "rapidjson/filewritestream.h"
#include "rapidjson/prettywriter.h"
#include "rapidjson/stringbuffer.h"#include "ui_widget.h"
#include "widget.h"using namespace std;
using namespace rapidjson;Widget::Widget(QWidget *parent) :QWidget(parent),ui(new Ui::Widget)
{ui->setupUi(this);
}Widget::~Widget()
{delete ui;
}void json_write();
void json_read();void Widget::on_pushButton_clicked()
{//写、读 测试json_write();json_read();
}float prec(double d, int pre = 2)
{QString s = QString::number(d, 'g', pre);return s.toFloat();
}
#undef prec
#define prec//写json文件
void json_write()
{Document doc;doc.SetObject();Document::AllocatorType &allocator=doc.GetAllocator(); //获取分配器//1.添加字符串对象doc.AddMember("author","tashaxing",allocator);//2.添加数组对象Value array1(kArrayType);for(int i=0;i<3;i++){Value int_object(kObjectType);int_object.SetInt(i);array1.PushBack(int_object,allocator);}doc.AddMember("number",array1,allocator);//3.添加复合对象Value object(kObjectType);object.AddMember("language1","C++",allocator);object.AddMember("language2","java",allocator);doc.AddMember("language",object,allocator);//4.添加对象数组和复合对象的组合Value array2(kArrayType);Value object1(kObjectType);object1.AddMember("hobby","drawing",allocator);array2.PushBack(object1,allocator);Value object2(kObjectType);object2.AddMember("height",prec(-12941.71999999999993),allocator);array2.PushBack(object2,allocator);doc.AddMember("information",array2,allocator);StringBuffer buffer;PrettyWriter<StringBuffer> pretty_writer(buffer);  //PrettyWriter是格式化的json,如果是Writer则是换行空格压缩后的jsonpretty_writer.SetMaxDecimalPlaces(4);doc.Accept(pretty_writer);//打印到屏幕cout<<"the json output:"<<endl;cout<<buffer.GetString()<<endl;//输出到文件ofstream fout;fout.open("test");    //可以使绝对和相对路径,用\\隔开目录,test, test.json, test.txt 都行,不局限于文件格式后缀,只要是文本文档fout<<buffer.GetString();fout.close();
}//读json文件
void json_read()
{cout<<"the json read:"<<endl;ifstream fin;fin.open("test");string str;string str_in="";while(getline(fin,str))    //一行一行地读到字符串str_in中{str_in=str_in+str+'\n';}//解析并打印出来Document document;document.Parse<0>(str_in.c_str());Value &node1=document["author"];cout<<"author: "<<node1.GetString()<<endl;Value &node2=document["number"];cout<<"number: "<<endl;if(node2.IsArray()){for(int i=0;i<node2.Size();i++)cout<<'\t'<<node2[i].GetInt()<<endl;}Value &node3=document["language"];cout<<"language: "<<endl;Value &tmp=node3["language1"];cout<<'\t'<<"language1: "<<tmp.GetString()<<endl;tmp=node3["language2"];cout<<'\t'<<"language2: "<<tmp.GetString()<<endl;Value &node4=document["information"];cout<<"information: "<<endl;if(node4.IsArray()){int i=0;Value &data=node4[i];   //注意,此处下表索引只能用变量,不能用常量,例如node[0]编译错误cout<<'\t'<<"hobby: "<<data["hobby"].GetString()<<endl;i=1;data=node4[i];cout<<'\t'<<"height: "<<data["height"].GetDouble()<<endl;}}

d参考:

https://gmplib.org/

https://www.cnblogs.com/miloyip/p/4610111.html


这篇关于rapidJson输出时 保留小数位的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/872227

相关文章

python多种数据类型输出为Excel文件

《python多种数据类型输出为Excel文件》本文主要介绍了将Python中的列表、元组、字典和集合等数据类型输出到Excel文件中,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参... 目录一.列表List二.字典dict三.集合set四.元组tuplepython中的列表、元组、字典

Spring AI集成DeepSeek实现流式输出的操作方法

《SpringAI集成DeepSeek实现流式输出的操作方法》本文介绍了如何在SpringBoot中使用Sse(Server-SentEvents)技术实现流式输出,后端使用SpringMVC中的S... 目录一、后端代码二、前端代码三、运行项目小天有话说题外话参考资料前面一篇文章我们实现了《Spring

Rust格式化输出方式总结

《Rust格式化输出方式总结》Rust提供了强大的格式化输出功能,通过std::fmt模块和相关的宏来实现,主要的输出宏包括println!和format!,它们支持多种格式化占位符,如{}、{:?}... 目录Rust格式化输出方式基本的格式化输出格式化占位符Format 特性总结Rust格式化输出方式

使用TomCat,service输出台出现乱码的解决

《使用TomCat,service输出台出现乱码的解决》本文介绍了解决Tomcat服务输出台中文乱码问题的两种方法,第一种方法是修改`logging.properties`文件中的`prefix`和`... 目录使用TomCat,service输出台出现乱码问题1解决方案问题2解决方案总结使用TomCat,

C++中实现调试日志输出

《C++中实现调试日志输出》在C++编程中,调试日志对于定位问题和优化代码至关重要,本文将介绍几种常用的调试日志输出方法,并教你如何在日志中添加时间戳,希望对大家有所帮助... 目录1. 使用 #ifdef _DEBUG 宏2. 加入时间戳:精确到毫秒3.Windows 和 MFC 中的调试日志方法MFC

Python使用Colorama库美化终端输出的操作示例

《Python使用Colorama库美化终端输出的操作示例》在开发命令行工具或调试程序时,我们可能会希望通过颜色来区分重要信息,比如警告、错误、提示等,而Colorama是一个简单易用的Python库... 目录python Colorama 库详解:终端输出美化的神器1. Colorama 是什么?2.

不删数据还能合并磁盘? 让电脑C盘D盘合并并保留数据的技巧

《不删数据还能合并磁盘?让电脑C盘D盘合并并保留数据的技巧》在Windows操作系统中,合并C盘和D盘是一个相对复杂的任务,尤其是当你不希望删除其中的数据时,幸运的是,有几种方法可以实现这一目标且在... 在电脑生产时,制造商常为C盘分配较小的磁盘空间,以确保软件在运行过程中不会出现磁盘空间不足的问题。但在

顺序表之创建,判满,插入,输出

文章目录 🍊自我介绍🍊创建一个空的顺序表,为结构体在堆区分配空间🍊插入数据🍊输出数据🍊判断顺序表是否满了,满了返回值1,否则返回0🍊main函数 你的点赞评论就是对博主最大的鼓励 当然喜欢的小伙伴可以:点赞+关注+评论+收藏(一键四连)哦~ 🍊自我介绍   Hello,大家好,我是小珑也要变强(也是小珑),我是易编程·终身成长社群的一名“创始团队·嘉宾”

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出 在数字化时代,文本到语音(Text-to-Speech, TTS)技术已成为人机交互的关键桥梁,无论是为视障人士提供辅助阅读,还是为智能助手注入声音的灵魂,TTS 技术都扮演着至关重要的角色。从最初的拼接式方法到参数化技术,再到现今的深度学习解决方案,TTS 技术经历了一段长足的进步。这篇文章将带您穿越时

如何将一个文件里不包含某个字符的行输出到另一个文件?

第一种: grep -v 'string' filename > newfilenamegrep -v 'string' filename >> newfilename 第二种: sed -n '/string/!'p filename > newfilenamesed -n '/string/!'p filename >> newfilename