
delphi
文章平均质量分 61
sunties
这个作者很懒,什么都没留下…
展开
-
delphi Pbyte 转化成 base64
转自 https://searchcode.com/codesearch/view/5602527/unit Base64;interfaceuses windows;{ Base64 encode and decode a string }function Base64Encode(src:pByte;len:integer):PAnsiChar;functi...原创 2015-05-25 09:22:50 · 508 阅读 · 0 评论 -
delphi TByteArray 装换成base64
unit EncodingUtil;interfaceuses SysUtils, Classes, Types, EncdDecd;function BytesToBase64(const bytes: TByteArray): string;function StreamToBase64(AStream: TStream): string;implem...原创 2015-05-25 09:27:35 · 962 阅读 · 0 评论 -
delphi excel 读取和写入
//读excelfunction TForm1.readExcel(fileName :WideString):TStringList;var I, J ,len,ret: Integer; MaxRow, MaxCol: Integer; List, Strs: TStringList; ExcelApp, Sheet: Variant; ...原创 2015-05-31 17:22:16 · 2079 阅读 · 0 评论