zoukankan      html  css  js  c++  java
  • 回复 "Globe" 关于 XML 编码转换的问题


    问题来源:http://www.cnblogs.com/del/archive/2011/03/24/1994029.html#2059114

    Globe 同学有这样的 XML 文件:
    <?xml version="1.0" encoding="gb2312"?> <Root> <friend name="&#x5341;&#x5E74;"></friend> <friend name="&#x66FE;&#x7D93;&#x5954;&#x653E;&#x904E;&#x30FE;&#x20;"></friend> <friend name="&#46028;&#50500;&#50752; &#45208;&#49244; &#45320; "></friend> </root>

    其中包含中文、韩文,并且有些是十六进制、有些是十进制,真实的内容应该是:
    <?xml version="1.0" encoding="GB2312"?> <Root> <friend name="十年"/> <friend name="曾經奔放過ヾ "/> <friend name="돌아와 나쁜 너 "/> </root>

    下面是把它打开并另存为标准的 UTF-8 格式 XML 的代码(使用了 DelphiXE 最新的正则表达式组件):

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, RegularExpressions;
    
    type
      TForm1 = class(TForm)
        Button1: TButton;
        procedure Button1Click(Sender: TObject);
      private
        function MyMatchEvaluator(const Match: TMatch): string;
      public
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    procedure TForm1.Button1Click(Sender: TObject);
    const
      pattern = '&#x?[0-9A-Fa-f]{1,5};';
    var
      List: TStringList;
      reg: TRegEx;
      path,tmpName: string;
    begin
      with TOpenDialog.Create(nil) do begin
        Execute;
        path := FileName;
        Free;
      end;
      if path = '' then Exit;
    
      List := TStringList.Create;
      List.LoadFromFile(path);
      List.Text := StringReplace(List.Text, 'GB2312', 'UTF-8', [rfIgnoreCase]);
      reg := TRegEx.Create(pattern, [roCompiled]);
      List.Text := reg.Replace(List.Text, MyMatchEvaluator);
    
      tmpName := ExtractFileName(path);
      path := StringReplace(path, tmpName, 'UTF8_' + tmpName, [rfIgnoreCase]);
      Text := path;
      List.SaveToFile(path, TEncoding.UTF8);
      List.Free;
    end;
    
    function TForm1.MyMatchEvaluator(const Match: TMatch): string;
    begin
      Result := Match.Groups[1].Value;
      if Match.Value[3] = 'x' then Result := '$' + Result;
      Result := WideChar(StrToInt(Result));
    end;
    
    end.
    

  • 相关阅读:
    Android学习地址
    Android动画设计源码地址
    chromeWebBrowser之浏览器开发
    win8.1蓝屏解决
    打包应用程序
    win8.1解决鼠标右键反应慢的问题
    Rewrite服务器和robots文件屏蔽动态页面
    第08组 Alpha事后诸葛亮
    第08组 Alpha冲刺(6/6)
    第08组 Alpha冲刺(5/6)
  • 原文地址:https://www.cnblogs.com/del/p/2002746.html
Copyright © 2011-2022 走看看