Project1

标题: 请教字符串转换gb2312code问题 [打印本页]

作者: 赛露休斯    时间: 2010-12-9 05:27
标题: 请教字符串转换gb2312code问题
本帖最后由 赛露休斯 于 2010-12-9 05:28 编辑

比如现在要把  "字符串"  转为  "%D7%D6%B7%FB%B4%AE"
该怎么做?
作者: 苏小脉    时间: 2010-12-9 08:26
  1. #coding: GBK
  2. require 'URI'

  3. p URI.escape('http://rpg.blue/字符串')
复制代码
在 Windows 下,如果你的非 Unicode 程序的 locale 设置是 PRC 中国大陆,那么把以上源文件按所谓的“ANSI 编码”格式存储,就会按照 GBK 编码。
作者: 赛露休斯    时间: 2010-12-9 09:32
回复 苏小脉 的帖子

是存储到哪?放RM里似乎不行
作者: 苏小脉    时间: 2010-12-9 10:52
回复 赛露休斯 的帖子

RM 里由于是 Ruby 1.8,所以需要自行转码,且不能使用标准库里的 URI 模块。

  1. m2w = Win32API.new('kernel32', 'MultiByteToWideChar', 'ilpipi', 'i')
  2. w2m = Win32API.new('kernel32', 'WideCharToMultiByte', 'ilpipipp', 'i')

  3. str = '字符串'

  4. len = m2w.call(65001, 0, str, -1, 0, 0) << 1
  5. str_utf_16 = ' ' * len
  6. m2w.call(65001, 0, str, -1, str_utf_16, len)
  7. len = w2m.call(936, 0, str_utf_16, -1, 0, 0, 0, 0) - 1
  8. str_gb2312 = ' ' * len
  9. w2m.call(936, 0, str_utf_16, -1, str_gb2312, len, 0, 0)

  10. res = ''
  11. str_gb2312.each_byte do |b|
  12.   res << sprintf('%%%02X', b)
  13. end

  14. p res
复制代码

作者: 赛露休斯    时间: 2010-12-9 22:06
可以正常使用,认可苏小脉




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1