Qt遍历整个ini,读取ini,写ini

这段代码展示了如何使用QSettings在Qt中读取和写入ini配置文件。首先,初始化QSettings对象并指定文件路径及编码,然后通过allKeys获取所有键并遍历打印其对应的值。此外,还演示了如何在特定的组(BigGroup)下读取和设置ChildKey的值。
摘要由CSDN通过智能技术生成

遍历整个ini

	QSettings *machine_data = new QSettings("/home/u/cnc/configs/ppmc/xxx.ini",QSettings::IniFormat);
    machine_data->setIniCodec("UTF-8");
	QStringList str = machine_data->allKeys();
    qDebug() <<"allKeys : " << str << endl;

    foreach(QString key,str)
    {
        qDebug() << machine_data->value(key).toString()<< endl;// 读取 savePath 的值
    }

读取ini

    int flag;
    QSettings *machine_data = new QSettings("/home/u/cnc/configs/ppmc/xxx.ini",QSettings::IniFormat);
    machine_data->setIniCodec("UTF-8");
    machine_data->beginGroup("BigGroup");
    gpib_kaiguan=machine_data->value("ChildKey").toInt();
    machine_data->endGroup();
    delete machine_data;

写ini

    int flag=1;
    QSettings *machine_data = new QSettings("/home/u/cnc/configs/ppmc/xxx.ini",QSettings::IniFormat);
    machine_data->setIniCodec("UTF-8");
    machine_data->beginGroup("BigGroup");
    machine_data->setValue("ChildKey",flag);
    machine_data->endGroup();
    delete machine_data;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值