对文件进行编码转换,文件进行编码转换,import sysim


import sysimport chilkatcharset = chilkat.CkCharset()#  Any string argument automatically begins the 30-day trial.success = charset.UnlockComponent(\"30-day trial\")if (success != True):    print charset.lastErrorText()    sys.exit()#  Set the \"To\" and \"From\" character encodings:charset.put_FromCharset(\"shift_JIS\")charset.put_ToCharset(\"utf-8\")#  To do file-to-file conversion, call ConvertFile.#  The shift_JIS sample file is downloadable from this URL:#  http://www.chilkatsoft.com/testData/japanese_shiftJis.txtsuccess = charset.ConvertFile(\"japanese_shiftJis.txt\",\"japanese_utf8.txt\")if (success != True):    print charset.lastErrorText()else:    print \"Success\"#该片段来自于http://byrx.net

评论关闭