Delphi,如何获取所有本地IP?

前端之家收集整理的这篇文章主要介绍了Delphi,如何获取所有本地IP?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都知道delphi中的一种方法可以获取本地IP地址的简单列表(例如tstrings).

我已经看了另一个相关的问题,似乎把我的头转向了delphi.

解决方法

在indy 9中,有一个单元IdStack,与TIdStack类
fStack := TIdStack.CreateStack;
try
  edit.caption := fStack.LocalAddress;  //the first address i believe
  ComboBox1.Items.Assign(fStack.LocalAddresses); //all the address'
finally
  freeandnil(fStack); 
end;

工作很好:)

来自雷米Lebeau的评论

The same exists in Indy 10,but the
code is a little different:

TIdStack.IncUsage; 
try 
  GStack.AddLocalAddressesToList(ComboBox1.Items); 
  Edit.Caption := ComboBox1.Items[0]; 
finally 
  TIdStack.DecUsage; 
end;
原文链接:https://www.f2er.com/delphi/102728.html

猜你在找的Delphi相关文章