IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> Qt读取文本命令行 -> 正文阅读

[C++知识库]Qt读取文本命令行

QT参数文件

qt寻找参数文件


//头文件:
#include<QFileDialog>
#include<QSettings>

//寻找参数文件
QSettings *IniFile = new QSettings("./Config/Config.ini", QSettings::IniFormat);//参数文件路径
    ui->lineEdit->setText(IniFile->value( "control/user").toString());//本机名
    ui->lineEdit_2->setText(IniFile->value( "control/bagPath").toString());//获取bag路径
    comPath=IniFile->value( "control/comPath").toString();//获取command路径

参数文件写法
命名为:Config.ini
放到qt可执行文件下(若将可执行文件放到桌面,需要将该参数文件置于同路径下)

[control]
#设备名
user=xx
#工控机名
host=nefu
#IP地址
IP=192.168.1.121

# bagBash
# bag路径
bagPath=/home/xx/
# 运行指令文本路径
comPath=/home/xx/command.txt  

运行指令文本

取名为:command.txt
放到:home目录下(由参数文件定义)

//***********************************************************************************************************************
//              【rosbash 运行指令集】
//
//   1.指令书写格式:name: xxxx   (指令索引名)
//                command: xxxx (运行指令)
//   2.以行为单位读取指令,“name”、“command”为关键字
//   3.本文件路径由参数文件定义,且不能含中文
//
//***********************************************************************************************************************

//启动红外相机
name:      launch_usb_cam
command:   source /home/xx/catkin_ws/devel/setup.bash && roslaunch usb_cam usb_cam-test.launch
//启动雷达
name:      launch_velodyne
command:   source /home/xx/catkin_ws/devel/setup.bash && roslaunch velodyne_pointcloud VLP16_points.launch

qt读取命令行

新建一个comboBox和一个按钮

//读取命令行
void MainWindow::on_actionxx_triggered()
{
    ui->comboBox_2->clear();
    nameList.clear();
    commandList.clear();

    QFile file(comPath);
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
    {
        bool com=false;
        while (!file.atEnd())
        {
            QByteArray line = file.readLine();
            QString str(line);
            if(str!= "\n")
            {
                if(str.startsWith("name"))
                {
                    int index = str.lastIndexOf(":");
                    QString str2 = str.mid(index+1);
                    //ui->textEdit->append(str2);
                    nameList.push_back(str2);
                    com=true;
                }else if(com)
                {
                    com=false;
                    if(str.startsWith("command"))
                    {
                        int index = str.lastIndexOf(":");
                        QString str2 = str.mid(index+1);
                        if(str.lastIndexOf("ros")<1)
                            commandList.push_back("NO Command!");
                        else
                            commandList.push_back(str2);
                    }else
                        commandList.push_back("NO Command!");
                }

            }

        }
        file.close();
        for(int i;i<nameList.size();i++)
            ui->comboBox_2->addItem(nameList.at(i));

    }
}

执行命令函数:

 void MainWindow::on_pushButton_8_clicked()
{
    if(nameList.empty())
        return;
    QString str =commandList.at(ui->comboBox_2->currentIndex());
    ui->textEdit->append(str);
    if(str.lastIndexOf("NO")>0)
        return;
    QString str2=QString("gnome-terminal -- bash -c '%1 '& \n").arg(str);
    char *n;
    QByteArray m=str2.toLatin1();
    n=m.data();
    system(n);
}

界面

运行按钮为:com
在这里插入图片描述

完整程序

mainWindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QProcess>

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_pushButton_clicked();

    void on_pushButton_2_clicked();

    void on_pushButton_3_clicked();

    void readoutput();

    void readerror();

    void on_pushButton_4_clicked();

    void on_pushButton_5_clicked();

    void on_pushButton_6_clicked();

    void on_pushButton_7_clicked();

    void on_actionxx_triggered();

    void on_action_triggered();

    void on_pushButton_8_clicked();

private:
    Ui::MainWindow *ui;
    QProcess *process;
    QString comPath;
    QVector<QString> nameList;
    QVector<QString> commandList;

};
#endif // MAINWINDOW_H

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include<QProcess>
#include<QDir>
#include<QFileDialog>
#include<QDebug>
#include<QTime>
#include<QSettings>
#include<QMessageBox>
MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    this->setWindowTitle("rosbag");

    QSettings *IniFile = new QSettings("./Config/Config.ini", QSettings::IniFormat);
    ui->lineEdit->setText(IniFile->value( "control/user").toString());//本机名
    ui->lineEdit_2->setText(IniFile->value( "control/bagPath").toString());//获取bag路径
    comPath=IniFile->value( "control/comPath").toString();//获取command路径

    process = new QProcess(this);
    process->start("rosbash");      //启动终端(Windows下改为cmd)
    process->waitForStarted();   //等待启动完成
    connect(process , &QProcess::readyReadStandardOutput, this , &MainWindow::readoutput);
    connect(process , &QProcess::readyReadStandardError, this , &MainWindow::readerror);

    on_actionxx_triggered();

}

MainWindow::~MainWindow()
{
    delete ui;
    if(process)
    {
          process->close();
          process->waitForFinished();
    }
}
//获取线程输出
void MainWindow::readoutput()
{
    ui->textEdit->append(process->readAllStandardOutput().data());   //将输出信息读取到编辑框
}
void MainWindow::readerror()
{
    QMessageBox::information(0, "Error", process->readAllStandardError().data());   //弹出信息框提示错误信息
}
//启动ros
void MainWindow::on_pushButton_clicked()
{
    QString strget=ui->lineEdit->text();
    QString str=QString("/home/%1/rosbash/roscore.sh").arg(strget);
    char *n;
    QByteArray m=str.toLatin1();
    n=m.data();
    QProcess::startDetached(n);
}
//添加bag列表
void MainWindow::on_pushButton_2_clicked()
{
    ui->comboBox->clear();
    //QString strget=ui->lineEdit->text();
    QString pathget=ui->lineEdit_2->text();
    QString Path=QString("%1").arg(pathget);//指定文件路径
    QDir dir(Path);
    //QDir dir(QDir::currentPath());//当前文件路径
    QString filtername = "*.bag";
    QStringList filter;
    filter << filtername;
    dir.setNameFilters(filter);
    QStringList Neuronindex = dir.entryList();
    ui->comboBox->addItems(Neuronindex);//把列表加载到comboBox
    QString s = QString::number(Neuronindex.size());//txt文件个数
    ui->textEdit->append(QString("rosbash $: 共有%1个bag文件").arg(s));

}

//运行该bag文件
void MainWindow::on_pushButton_3_clicked()
{
    QString strget=ui->lineEdit->text();
    QString pathget=ui->lineEdit_2->text();
    QString getbag=ui->comboBox->currentText();
    QString str=QString("/home/%1/rosbash/bagplay.sh %2 %3 \n").arg(strget).arg(pathget).arg(getbag);
    char *n;
    QByteArray m=str.toLatin1();
    ui->textEdit->append(QString("rosbash $: %1").arg(str));
    n=m.data();
    //process->write(n);           //向终端写入命令,注意尾部的“\n”不可省略
    system(n);
}
//删除该bag文件
void MainWindow::on_pushButton_4_clicked()
{
    QString strget=ui->lineEdit->text();
    QString pathget=ui->lineEdit_2->text();
    QString getbag=ui->comboBox->currentText();
    QString path =QString("%1/%2").arg(pathget).arg(getbag);//指定文件路径
    QFile fileTemp(path);

    QMessageBox msg(this);//对话框设置父组件
    msg.setWindowTitle("Prompt");//对话框标题
    msg.setText("Confirm the delete action ?");//对话框提示文本
    msg.setIcon(QMessageBox::Question);//设置图标类型Information
    msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No);//对话框上包含的按钮
    if(msg.exec() == QMessageBox::Yes)//模态调用
    {
        fileTemp.remove();//删除
        ui->textEdit->append(QString("rosbash $: 成功删除%1文件").arg(path));
        on_pushButton_2_clicked();
    }

}
//记录ros包
void MainWindow::on_pushButton_5_clicked()
{
    QString nameget=ui->lineEdit_3->text();
    QDate D;
    D=QDate::currentDate();
    QTime T;
    T=QTime::currentTime();
    QString bagname =QString("%1%2-%3-%4-%5-%6-%7.bag").arg(nameget).arg(D.year()).arg(D.month()).arg(D.day()).arg(T.hour()).arg(T.minute()).arg(T.second());//指定文件路径
    qDebug() << bagname;

    ui->textEdit->append(QString("rosbash $: 记录的包将被命名为:%1").arg(bagname));
    QString strget=ui->lineEdit->text();
    QString str4=QString("gnome-terminal -- bash -c '/home/%1/rosbash/bagrecord.sh %2'& \n").arg(strget).arg(bagname);
    ui->textEdit->append(QString("rosbash $: /home/%1/rosbash/bagrecord.sh %2").arg(strget).arg(bagname));
    char *n;
    QByteArray m=str4.toLatin1();
    n=m.data();
    system(n);
    //process->write(n);
}

void MainWindow::on_pushButton_6_clicked()
{
     QString strget=ui->lineEdit->text();
     QString str4=QString("gnome-terminal -- bash -c '/home/%1/rosbash/view.sh'& \n").arg(strget);
     ui->textEdit->append(QString("rosbash $: /home/%1/rosbash/view.sh").arg(strget));
     char *n;
     QByteArray m=str4.toLatin1();
     n=m.data();
     system(n);
}
//获取baglist.txt
void MainWindow::on_pushButton_7_clicked()
{
    QString strget=ui->lineEdit->text();
    QString pathget=ui->lineEdit_2->text();
    QString str4=QString("gnome-terminal -- bash -c '/home/%1/rosbash/baglist.sh %2'& \n").arg(strget).arg(pathget);
    ui->textEdit->append(QString("rosbash $: /home/%1/rosbash/baglist.sh %2").arg(strget).arg(pathget));
    char *n;
    QByteArray m=str4.toLatin1();
    n=m.data();
    system(n);
}
//读取命令行
void MainWindow::on_actionxx_triggered()
{
    ui->comboBox_2->clear();
    nameList.clear();
    commandList.clear();

    QFile file(comPath);
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
    {
        bool com=false;
        while (!file.atEnd())
        {
            QByteArray line = file.readLine();
            QString str(line);
            if(str!= "\n")
            {
                if(str.startsWith("name"))
                {
                    int index = str.lastIndexOf(":");
                    QString str2 = str.mid(index+1);
                    //ui->textEdit->append(str2);
                    nameList.push_back(str2);
                    com=true;
                }else if(com)
                {
                    com=false;
                    if(str.startsWith("command"))
                    {
                        int index = str.lastIndexOf(":");
                        QString str2 = str.mid(index+1);
                        if(str.lastIndexOf("ros")<1)
                            commandList.push_back("NO Command!");
                        else
                            commandList.push_back(str2);
                    }else
                        commandList.push_back("NO Command!");
                }

            }

        }
        file.close();
        for(int i;i<nameList.size();i++)
            ui->comboBox_2->addItem(nameList.at(i));

    }
}

void MainWindow::on_pushButton_8_clicked()
{
    if(nameList.empty())
        return;
    QString str =commandList.at(ui->comboBox_2->currentIndex());
    ui->textEdit->append(str);
    if(str.lastIndexOf("NO")>0)
        return;
    QString str2=QString("gnome-terminal -- bash -c '%1 '& \n").arg(str);
    char *n;
    QByteArray m=str2.toLatin1();
    n=m.data();
    system(n);
}
// 关闭所有终端
void MainWindow::on_action_triggered()
{
    system("gnome-terminal -- bash -c 'killall -9 bash'&");
    ui->textEdit->append("rosbash $: 关闭所有终端...");
}


main.cpp

 #include "mainwindow.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-10 22:13:22  更:2022-03-10 22:14:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:42:54-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码