You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 23, 2020. It is now read-only.
let NSGBKStringEncoding = CFStringConvertEncodingToNSStringEncoding(CFStringEncoding(CFStringEncodings.GB_18030_2000.rawValue))
var htmlString = String(data: data!, encoding: NSGBKStringEncoding)
let ji = Ji(htmlString: htmlString!, encoding: NSGBKStringEncoding)
@honghaoz I found the reason!! Its not the mistake of Ji,but me.
the HTML String from Web is based on GBK,but I change some HTML code by
stringByReplacingOccurrencesOfString: withString:
and this api return a NSUTF8StringEncoding String.
if I tell the Ji the string encoding is UTF8,everything will work well.
if I not call the string api above,and tell Ji the encoding is GBK,it also work well~
网页是GBK编码的,然后我这样初始化Ji
我这样转换后ji里的内容中文的全乱码了,不知道为什么
网站是梦幻西游论坛:http://my.netease.com/forum.php
The text was updated successfully, but these errors were encountered: