English 中文(简体)
FTP and Convert text file from UNICODE to UTF-8
原标题:FTP and Convert text file from UNICODE to UTF-8

是否有任何人知道如何安排或自动复制或偷窃新闻中心的正文档案,是否将其转换成UTF-8编码系统?

The file I am attempting is C:Documents and SettingsAll UsersApplication DataMicrosoftWindows NTMSFaxActivityLogOutboxLOG.txt. I can re-save it as a UTF-8 in notepad and that allows me to import it into navicat mysql. But, I have to copy it to another directory before it will allow me to import it since MS FAX has it in use.

最佳回答

FTP支持的只是4个转让类型:ASCII, EBCDIC, binary, 和“ local”(9-bit bytes, 是s 有9-bit bytes)。 UNICODE和UTF-8没有得到支持。 您必须做转换工作。

问题回答

暂无回答




相关问题
Why are there duplicate characters in Unicode?

I can see some duplicate characters in Unicode. For example, the character C can be represented by the code points U+0043 and U+0421. Why is this so?

how to extract characters from a Korean string in VBA

Need to extract the initial character from a Korean word in MS-Excel and MS-Access. When I use Left("한글",1) it will return the first syllable i.e 한, what I need is the initial character i.e ㅎ . Is ...

File open error by using codec utf-8 in python

I execute following code on windows xp and python 2.6.4 But it show IOError. How to open file whose name has utf-8 codec. >>> open( unicode( 한글.txt , euc-kr ).encode( utf-8 ) ) Traceback ...

UnicodeEncodeError on MySQL insert in Python

I used lxml to parse some web page as below: >>> doc = lxml.html.fromstring(htmldata) >>> element in doc.cssselect(sometag)[0] >>> text = element.text_content() >>>...

Fast way to filter illegal xml unicode chars in python?

The XML specification lists a bunch of Unicode characters that are either illegal or "discouraged". Given a string, how can I remove all illegal characters from it? I came up with the following ...

热门标签