Qt---获取本机网络信息

getHostInformation()获得主机信息,包括主机名,所有IP地址。
slotDetail()获得与网络接口相关的信息,包括IP地址,子网掩码,广播地址。

.pro

QT       += network

networkinformation.h

#include "networkinformation.h"

NetworkInformation::NetworkInformation(QWidget *parent):QWidget(parent)
{
    hostLabel = new QLabel(tr("主机名:"));
    LineEditLocalHostName = new QLineEdit;
    ipLabel = new QLabel(tr("IP 地址"));
    LineEditAddress = new QLineEdit;
    detailBtn = new QPushButton(tr("详细"));

    mainLayout = new QGridLayout;
    mainLayout->addWidget(hostLabel, 0, 0);
    mainLayout->addWidget(LineEditLocalHostName, 0, 1);
    mainLayout->addWidget(ipLabel, 1, 0);
    mainLayout->addWidget(LineEditAddress, 1, 1);
    mainLayout->addWidget(detailBtn, 2, 0, 1, 2);

    getHostInformation();
    connect(detailBtn, SIGNAL(clicked()), this, SLOT(slotDetail()));
}

NetworkInformation::~NetworkInformation()
{

}

void NetworkInformation::getHostInformation()
{
    QString localHostName = QHostInfo::localHostName();  //获取主机名
    LineEditLocalHostName->setText(localHostName);

    QHostInfo hostInfo = QHostInfo::fromName(localHostName);  //根据主机名来获取本机的信息
    QList<QHostAddress> listAddress = hostInfo.addresses(); //获取本机所有ip地址
    if(!listAddress.isEmpty())
        LineEditAddress->setText(listAddress.first().toString());
}

void NetworkInformation::slotDetail()
{
    QString detail = "";
    QList<QNetworkInterface> list = QNetworkInterface::allInterfaces(); //获取所有网络接口的列表
    for(int i=0; i<list.count(); i++)
    {
        QNetworkInterface interface = list.at(i);
        detail = detail + tr("设备:") + interface.name() + "\n";
        //获取IP地址条目列表,每个条目中包含一个IP地址,一个子网掩码和一个广播地址
        QList<QNetworkAddressEntry> entryList = interface.addressEntries();
        for(int j=0; j<entryList.count(); j++)
        {
            QNetworkAddressEntry entry = entryList.at(j);
            detail = detail + "\t" + tr("IP地址:") + entry.ip().toString() + "\n";
            detail = detail + "\t" + tr("子网掩码:") + entry.netmask().toString() + "\n";
            detail = detail + "\t" + tr("广播地址:") + entry.broadcast().toString() + "\n";
        }
    }
    QMessageBox::information(this, tr("Detail"), detail);
}

main.cpp

#include "networkinformation.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    NetworkInformation w;
    w.show();

    return a.exec();
}
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值