Delphi版IP地址与整型互转


本文整理自网络,侵删。

 

unit Unit11;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm11 = class(TForm)
    edt1: TEdit;
    btn1: TButton;
    edt2: TEdit;
    btn2: TButton;
    procedure btn1Click(Sender: TObject);
    procedure btn2Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    function ip2Int(const strIP: string): Int64;
    function int2Ip(intIP: Int64): string;
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form11: TForm11;

implementation

{$R *.dfm}

function TForm11.int2Ip(intIP : Int64) : string;
var
  n : int64;
begin
  Result := '';
  n := intIP shr 24;
  intIP := intIP xor (n shl 24);
  Result := IntToStr(n) + '.';

  n := intIP shr 16;
  intIP := intIP xor (n shl 16);
  Result := Result + IntToStr(n) + '.';

  n := intIP shr 8;
  intIP := intIP xor (n shl 8);
  Result := Result + IntToStr(n) + '.';

  n := intIP;
  Result := Result + IntToStr(n);
end;

function TForm11.ip2Int(const strIP : string): Int64;
var
  lst : TStringList;
  i : integer;
begin
  result := 0;
  lst := TStringList.Create;
  try
    lst.Delimiter := '.';
    lst.DelimitedText := strIP;

    for i := 0 to lst.Count - 1 do
      result := result + StrToInt64(lst[i]) shl (24 - i * 8);
  finally
    lst.Free;
  end;
end;

procedure TForm11.btn1Click(Sender: TObject);
begin
  edt2.Text := IntToStr(ip2Int(edt1.Text));
end;

procedure TForm11.btn2Click(Sender: TObject);
begin
  edt1.Text := int2Ip(StrToInt64(edt2.Text));
end;

procedure TForm11.FormCreate(Sender: TObject);
begin
  edt1.Text := '192.168.1.1';
  btn1.Click;
end;

end.

相关阅读 >>

Delphi锁定鼠标 模拟左右键 静止一会自动隐藏鼠标

Delphi 实现窗体倒计时进度条显示

Delphi根据url获取缓存文件的方法

Delphi richedit的实现msn / qq 中的动画表情

Delphi 为数字补充前缀0

Delphi2009 使用 png 图片

Delphi 设置文本框中光标的位置在最后

Delphi idhttp多线程下载

Delphi 如何将access数据库后缀名accdb改为mdb

Delphi 最简单的判断数字函数

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...