0

我正在使用 Delphi XE2,Delphi 中是否有与 PHP 中的 pack() 等效的命令?我需要将包含整数和字符串的 Delphi 记录转换为二进制,以便通过 TCP 传输。

4

1 回答 1

0

There is no built in method that will convert a generic record into binary form (or vice versa). You will need to either:

  1. Write your own dedicated code to do so, or
  2. Find and use an object persistence library.
于 2012-08-07T15:56:47.127 回答