Ruslan PolupanOct. 23, 2017, 3:11 a.m.
QProcess и ping
Возникла необходимость отображать в форме вывод команды пинг
void InfoObjectDialog::on_toolButtonPing_clicked() { if(ui->pingOutput->isHidden()) { ping = new QProcess(this); ping->setProcessChannelMode(QProcess::MergedChannels); connect( ping, SIGNAL(readyReadStandardOutput ()), this, SLOT(print_ping()) ); #ifdef Q_OS_WIN ping->start("ping", QStringList() << "-t" <<ip); #else ping->start("ping", QStringList() << ip); #endif } else { ping->kill(); } } void InfoObjectDialog::print_ping() { QByteArray output; output = ping->readAllStandardOutput (); QTextCodec *codec = QTextCodec::codecForName("cp-866"); QString fio = codec->toUnicode(output.data()); fio.replace("\n",""); qDebug() << "ping output" << fio; ui->pingOutput->appendPlainText(fio); //вывод в гуи }
А хотелось бы послать Ctrl+C. дабы получить статистику работы ping.
Может я не там Асистент читаю? :-)
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 12, 2024, 1:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 11:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 11:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
Now discuss on the forum
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
t
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
tonypeachey1Nov. 15, 2024, 5:04 p.m.
NSProjectJune 4, 2022, 1:49 p.m.
IscanderCheNov. 1, 2024, 1:43 a.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
Тоже как-то плаваю в этом вопросе, но возможно, Вам поможет статический метод execute .
Таки execute. На другом форуме ответили.
Ну хорошо. Значит мыслил в нужном направлении. Спасибо за инфу.