zoukankan      html  css  js  c++  java
  • Delphi读写UTF-8、Unicode格式文本文件

    在研究PvPGN时发现conf配置文件一些为UTF-8和Unicode格式,这样便可良好的支持多语言,从网上查阅资料后,将读写UTF-8、Unicode文件写了几个最精简的函数,更新后加了是否写文件头的功能,以适应更多需要,注意函数未加防错保护。


    参数说明:f文件名、s写入或读取的文件内容、hs文件头、b是否读写文件头。

    UTF-8文件写入函数
    程序代码 程序代码
    procedure SaveUTF(f:string;s:string;b:boolean=true);
    var
      ms:TMemoryStream;
      hs:String;
    begin
      if s='' then exit;
      ms:=TMemoryStream.Create;
      if b then begin
        hs:=#$EF#$BB#$BF;
        ms.Write(hs[1],3);
      end;
      s:=AnsiToUtf8(s);
      ms.Write(s[1],Length(s));
      ms.Position:=0;
      ms.SaveToFile(f);
      ms.Free;
    end;


    UtF-8文件读取函数
    程序代码 程序代码
    function LoadUTF(f:string;b:boolean=true):string;
    var
      ms:TMemoryStream;
      s,hs:string;
    begin
      Result:='';
      if not FileExists(f) then exit;
      ms:=TMemoryStream.Create;
      ms.LoadFromFile(f);
      if b then begin
        SetLength(hs,3);
        ms.Read(hs[1],3);
        if hs<>#$EF#$BB#$BF then begin ms.Free; exit; end;
        SetLength(s,ms.Size-3);
        ms.Read(s[1],ms.Size-3);
      end else begin
        SetLength(s,ms.Size);
        ms.Read(s[1],ms.Size);
      end;
      Result:=Utf8ToAnsi(s);
      ms.Free;
    end;


    Unicode文件写入函数
    程序代码 程序代码
    procedure SaveUnicode(f:string;s:string;b:boolean=true);
    var
      ms:TMemoryStream;
      hs:string;
      ws:WideString;
    begin
      if s='' then exit;
      ms:=TMemoryStream.Create;
      if b then begin
        hs:=#$FF#$FE;
        ms.Write(hs[1],2);
      end;
      ws:=WideString(s);
      ms.Write(ws[1],Length(ws)*2);
      ms.Position:=0;
      ms.SaveToFile(f);
      ms.Free;
    end;


    Unicode文件读取函数
    程序代码 程序代码
    function LoadUnicode(f:string;b:boolean=true):string;
    var
      ms:TMemoryStream;
      hs:String;
      ws:WideString;
    begin
      Result:='';
      if not FileExists(f) then exit;
      ms:=TMemoryStream.Create;
      ms.LoadFromFile(f);
      if b then begin
        SetLength(hs,2);
        ms.Read(hs[1],2);
        if hs<>#$FF#$FE then begin ms.Free; exit; end;
        SetLength(ws,(ms.Size-2) div 2);
        ms.Read(ws[1],ms.Size-2);
      end else begin
        SetLength(ws,ms.Size div 2);
        ms.Read(ws[1],ms.Size);
      end;
      Result:=AnsiString(ws);
      ms.Free;
    end;
     
    http://www.cnblogs.com/toosuo/archive/2008/09/21/1295114.html

    http://www.cnblogs.com/kfarvid/archive/2010/11/10/1873403.html

  • 相关阅读:
    原创 爱因斯坦迷题及推导过程
    惊闻姑姑家女婿去世,哀叹生命之脆弱,死亡如此接近
    京东自营预售逻辑
    自营SKU绑定逻辑
    自营结算解释&对账逻辑
    CPS逻辑
    京东搜索结果数据异常
    C++静态库中使用_declspec(dllexport) 不能导出函数的问题
    HTTP+SVN访问速度慢的问题
    Python log
  • 原文地址:https://www.cnblogs.com/findumars/p/5910646.html
Copyright © 2011-2022 走看看