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モビリティで電話のIPアドレスを見つける簡単な方法はありますか?(それが重要な場合はs60電話のコンテキストで)
br、トウコ
このようなものは、通常の 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(); } }