Delphi:制作 unicode RAR 组件 2.0
我有 RAR 组件 2.0 和 Delphi 2010。该组件使用 AnsiString 作为文件路径。我怎样才能使它成为unicode?我将 RAR.pas 中的 AnsiString 更改为 String 但没有帮助。
谢谢!
I have RAR-component 2.0 and Delphi 2010. This component uses AnsiString for File Path. How can I make it unicode? I changed AnsiString to String in RAR.pas but it did not help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 RAR.pas 中:
fFileName
字段和Filename
属性更改为 WideString。TRAR.OpenFile
,使FileName
参数为 WideString。在
TRAR.OpenArchive(Extract:boolean)
中更改此行:ArcName := PAnsiChar(fArchiveInformation.FileName);
对此:
ArcNameW := PWideChar(fArchiveInformation.FileName);
在 RAR_DLL.pas 中:
更改
GetFileModifyDate
,使这一行:是这样的:
并删除
Struct: TOFSTRUCT;< var 块中的 /code> 行。
In RAR.pas:
fFileName
field and theFilename
property to WideString.TRAR.OpenFile
so theFileName
argument is a WideString.In
TRAR.OpenArchive(Extract:boolean)
change this line:ArcName := PAnsiChar(fArchiveInformation.FileName);
to this:
ArcNameW := PWideChar(fArchiveInformation.FileName);
In RAR_DLL.pas:
Change
GetFileModifyDate
so this line:is this:
and remove the
Struct: TOFSTRUCT;
line from the var block.如果我查看您刚刚链接到的源代码,我认为您无需更改任何内容。看起来应该已经支持unicode了。作者声称它适用于 Delphi 2009,我看到 TRarProcessFile() 有两个版本:
TRARProcessFileW 应该接受带有 Unicode 字符的文件名。
你尝试过使用它吗?
也许它仍然不起作用(我自己还没有尝试过使用 Unicode 字符),但如果这不起作用,那么如果您更详细地描述出了什么问题,也许会有所帮助。
哦,为了确定一下:您使用的是 Delphi 2009+ 对吗?
If I look at the sourcecode that you just linked to, I think you didn't have to change anything. It looks like it should already support unicode. The author claims it's for Delphi 2009, I see that there are two versions of TRarProcessFile():
TRARProcessFileW should accept a filename with Unicode characters.
Did you try to use that?
Maybe it somehow still doesn't work (I haven't tried it myself with Unicode characters yet), but if this doesn't work, then maybe it's helpful if you describe what goes wrong with a bit more detail.
Oh, and just to be sure: you are using Delphi 2009+ right?