Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以使用 Qt Mobility 找出手机的 IP 地址?(在 s60 手机的情况下,如果这很重要)
兄弟,图科
像这样的东西在正常的 Qt 中有效。如果是红鲱鱼,请道歉。
int main( int argc, char** argv ) { QHostInfo info = QHostInfo::fromName( QHostInfo::localHostName() ); QList<QHostAddress> l= info.addresses(); for(int i=0; i<l.count(); i++) { qDebug()<<l[i].toString(); } }