PowerBuilder 12如何确定输入文件的编码
我是 PowerBuilder 12 的新手,想知道是否有任何方法可以确定输入文件的编码(例如 Unicode、BIG5)。任何评论和代码示例表示赞赏!谢谢!
I'm new to PowerBuilder 12, and would like to know is there any way to determine the encoding (e.g. Unicode, BIG5) of an input file. Any comments and code samples are appreciated! Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 PB 12.5 帮助文件:
FileEncoding ( filename )
filename :要测试编码类型的文件的名称
返回值
编码ANSI!
编码UTF8!
编码UTF16LE!
编码UTF16BE!
如果文件名不存在,则返回 null。
From the PB 12.5 help file :
FileEncoding ( filename )
filename : The name of the file you want to test for encoding type
Return Values
EncodingANSI!
EncodingUTF8!
EncodingUTF16LE!
EncodingUTF16BE!
If filename does not exist, returns null.
如果您假设 Unicode 文件具有 BOM 前缀,那么查找 Unicode 非常容易(尽管现实是这样)并非所有 Unicode 文件都有这个)。下面是一些执行此操作的代码。不过,我对Big5一无所知;在我看来(乍一看规范,从来没有机会使用它)就像它没有类似的前缀。
祝你好运,
特里
Finding Unicode is pretty easy, if you assume the Unicode file has a BOM prefix (although reality is that not all Unicode files do have this). Some code to do this is below. However, I have no idea about Big5; it looks to me (at first glance at the spec, never had occasion to use it) like it doesn't have a similar prefix.
Good luck,
Terry