search for: cp936

Displaying 18 results from an estimated 18 matches for "cp936".

Did you mean: cp932
2018 Apr 28
2
[Bug report] Chinese characters are not handled correctly in Rterm for Windows
...-27 r74651), and it still exists. RGui is always fine with Chinese characters, but some IDEs rely on the CLI version of R (e.g. Visual Studio Code with R plugin). >Your example print("ABC\u4f60\u597dDEF") is printing two Chinese characters, right? Yes. U+4F60, U+597D or C4E3, BAC3 in CP936. >Could you reproduce the problem with printing just one of the characters, say print("ABC\u4f60DEF") ? Yes. The console output is pasted in [ https://paste.ubuntu.com/p/TYgZWhdgXK/ ] (to avoid gibberish in e-mail). The Active Code Page is 936 before and after running Rterm. >As a...
2009 May 19
0
language charset configuration problem!
....org Subject: language charset problem£¡ Date: Sun, 17 May 2009 02:10:45 +0000 dear all£¬ I port samba 3.0.0 to board ,and it is almost ok. but there still some problem about file display can't be resolved. I use charset C 1 chinese name file display wrong. I confiure the smb.conf to cp936 char set as followed. ... display charset = cp936 unix charset = cp936 dos charset = cp936 ... but it is still not ok. but when I port samba 1.9.x ,I find it's ok. what's more ,my filesystem which is in USB device is mounted ok. it is have relation with this ? 2 the...
2018 Mar 08
2
[Bug report] Chinese characters are not handled correctly in Rterm for Windows
Hello everyone, I am new to R and I have experienced some bugs when using Rterm on Windows. Chinese characters in the console output are discarded by Rterm, and trying to type them into the console will crash the Rterm application. ---ENVIRONMENT--- Platform = x86_64-w64-mingw32 OS = Windows 10 Pro 1709 chs R version = 3.4.3 Active code page = 936 (Simplified Chinese) ---STEPS TO
2007 Jun 09
1
smbclient error: NT_STATUS_BAD_NETWORK_NAME, on shared foler with a Chinese name
Hi folks, I am trying to access the shared folders on a Windows XP PC from a Linux (FC5) PC using smbclient. Linux config info: $ locale LANG=en_US.UTF-8 $ rpm -q samba samba-3.0.24-6.fc5 smb.conf: [global] dos charset = CP936 <--- Simplified Chinese unix charset = UTF-8 display charset = LOCALE Now, here is the problem: smbclient can list the shared folders, including one with a Chinese name; but smbclient can't access the Chinese folder itself. The Chines...
2018 May 04
0
[Bug report] Chinese characters are not handled correctly in Rterm for Windows
...nd it still exists. RGui is always fine with Chinese characters, but some IDEs rely on the CLI version of R (e.g. Visual Studio Code with R plugin). > >> Your example print("ABC\u4f60\u597dDEF") is printing two Chinese characters, right? > Yes. U+4F60, U+597D or C4E3, BAC3 in CP936. > >> Could you reproduce the problem with printing just one of the characters, say print("ABC\u4f60DEF") ? > Yes. The console output is pasted in [ https://paste.ubuntu.com/p/TYgZWhdgXK/ ] (to avoid gibberish in e-mail). > The Active Code Page is 936 before and after runni...
2006 May 09
1
A question about encoding
...ws. > Sys.getlocale() [1] "LC_COLLATE=Chinese_People's Republic of China.936;LC_CTYPE=Chinese_People's Republic of China.936;LC_MONETARY=Chinese_People's Republic of China.936;LC_NUMERIC=C;LC_TIME=Chinese_People's Republic of China.936" > localeToCharset() [1] "CP936" Now I want to use JGR,which uses UTF-8 encoding. So when I use save.image function to save something containg Chinese character with R,and then load into JGR, the Chinese character will not display correctly.Of course,I can use iconv to convert the character making it readable.But is there a...
2006 Sep 11
1
can't copy file.
...zh_CN" LC_MONETARY="zh_CN" LC_MESSAGES="zh_CN" LC_PAPER="zh_CN" LC_NAME="zh_CN" LC_ADDRESS="zh_CN" LC_TELEPHONE="zh_CN" LC_MEASUREMENT="zh_CN" LC_IDENTIFICATION="zh_CN" LC_ALL= i try all possible charset utf-8,gbk,cp936,or gb2312. i have focus on this tow days,if i still can't solve this i will crazy. thanks fro any help!
2018 Apr 05
0
[Bug report] Chinese characters are not handled correctly in Rterm for Windows
...ystem to reproduce on). A user-targeted advice would be to use RGui (Rgui.exe). Does the problem also exist in R-devel? https://cran.r-project.org/bin/windows/base/rdevel.html Your example? print("ABC\u4f60\u597dDEF") is printing two Chinese characters, right? The first one is C4E3 in CP936 (4F60 in Unicode) and the second one is BAC3 in CP936 (597D in Unicode)? Could you reproduce the problem with printing just one of the characters, say print("ABC\u4f60DEF") ? As a sanity check - does this display the correct characters in RGui? It should, and does on my system, as RG...
2020 Jun 22
0
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
...;\u00e4" is a Latin-1 character, so representable in CP1252. On my Windows running in CP1252 as C locale and system code page, your example works fine, file.exists() returns TRUE, and this is the expected behavior (tested in R-devel and R4.0). Your example was run in CP1252 as C locale but CP936 as the system code page (see the sessionInfo() output). On Windows, unfortunately, there are two different "current locales" at a time. With your settings (CP1252 as C locale and CP936 as system code page), I get the same results as you, file.exists() returns FALSE. enc2native(z) work...
2006 Oct 05
1
Bug in 2.4.0 Windows menu setup (PR#9277)
I've tracked down where this is occurring, but I don't know how to fix it. Here's a summary: If the language in Windows is set to simplified Chinese (i.e. Chinese (PRC)) and message translations are installed, then on startup Rgui crashes when it tries to install the console popup menu. The crash comes when it gets an error trying to do a conversion using mbrtowc, and tries to
2020 Jun 22
2
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
Hi Tomas, I received a report about R 4.0.0 in the knitr package (https://github.com/yihui/knitr/issues/1840), and I think it is related to the issue here. I created a minimal reproducible example below: owd = setwd(tempdir()) z = 'K\u00e4sch.txt' file.create(z) list.files() file.exists(list.files()) setwd(owd) Output: > owd = setwd(tempdir()) > z = 'K\u00e4sch.txt' >
2020 Jun 24
3
Possible Bug: file.exists() Function. Due to UTF-8 Encoding differences on Windows between R 4.0.1 and R 3.6.3?
...tin-1 character, so representable in CP1252. On > my Windows running in CP1252 as C locale and system code page, your > example works fine, file.exists() returns TRUE, and this is the expected > behavior (tested in R-devel and R4.0). > > Your example was run in CP1252 as C locale but CP936 as the system code > page (see the sessionInfo() output). On Windows, unfortunately, there > are two different "current locales" at a time. With your settings > (CP1252 as C locale and CP936 as system code page), I get the same > results as you, file.exists() returns FALSE. en...
2009 Jan 05
0
will it break the system files?
Hi,all,i seted the encoding of vim in order to display chinese well.Because when i opened source files programed by myslfe,the chinese can't display well.My locale is zh_CN.UTF-8,here is the contents of .vimrc: let &termencoding=&encoding set fileencodings=utf-8,gbk,ucs-bom,cp936 After this ,will it break the system files when i edit the system files by vim?
2006 Sep 08
0
can't copy file with chinese name.
...zh_CN" LC_MONETARY="zh_CN" LC_MESSAGES="zh_CN" LC_PAPER="zh_CN" LC_NAME="zh_CN" LC_ADDRESS="zh_CN" LC_TELEPHONE="zh_CN" LC_MEASUREMENT="zh_CN" LC_IDENTIFICATION="zh_CN" LC_ALL= i try all possible charset utf-8,gbk,cp936,or gb2312. i have focus on this tow days,if i still can't solve this i will crazy. thanks fro any help!
2005 Apr 21
0
error reports
Dear John Fox, these is still error in Rcmdr package when locale is cp936. > Loading required package: tcltk > Loading Tcl/Tk interface ... done > Error in parse(file, n, text, prompt) : syntax error on line 5090 > Error: unable to load R code in package 'Rcmdr' > Error: package/namespace load failed for 'Rcmdr' > version _...
2009 Oct 06
2
Help file doesn't display correctly
Dear R Developer, It seems to be a problem with help file. Not sure if it is related to the new format of Rd parser. Multiple lines are joined together without proper line break. > ?mean There were 14 warnings (use warnings() to see them) ## All lines are joined together and not easy to read. > warnings() Warning messages: 1: In grepl("^[[:blank:]]*$", buffer[length(buffer)]) :
2005 Dec 10
1
[BUG 2.6.15-rc5] EXT3-fs error and soft lockup detected
...CONFIG_FUSE_FS=m # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y CONFIG_ZISOFS_FS=y CONFIG_UDF_FS=m CONFIG_UDF_NLS=y # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=m CONFIG_MSDOS_FS=m CONFIG_VFAT_FS=m CONFIG_FAT_DEFAULT_CODEPAGE=936 CONFIG_FAT_DEFAULT_IOCHARSET="cp936" CONFIG_NTFS_FS=m # CONFIG_NTFS_DEBUG is not set CONFIG_NTFS_RW=y # # Pseudo filesystems # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y # CONFIG_PROC_VMCORE is not set CONFIG_SYSFS=y CONFIG_TMPFS=y # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set CONFIG_RAMFS=y CONFIG_RELAYFS_FS=y # #...
2006 Nov 26
0
[758] trunk/wxruby2: i18n support: added Locale class, methods for get/set languages & encodings
...859-7 + ISO-8859-8 + ISO-8859-9 + ISO-8859-10 + ISO-8859-11 + ISO-8859-12 + ISO-8859-13 + ISO-8859-14 + ISO-8859-15 + ISO-8859-MAX + + KOI8 + KOI8-U + ALTERNATIVE + BULGARIAN + + CP437 + CP850 + CP852 + CP855 + CP866 + + CP874 + CP932 + CP936 + CP949 + CP950 + CP1250 + CP1251 + CP1252 + CP1253 + CP1254 + CP1255 + CP1256 + CP1257 + CP12-MAX + + UTF7 + UTF8 + EUC-JP + UTF16BE + UTF16LE + UTF32BE + UTF32LE + + MACROMAN + MACJAPANESE + MACCHINESETRAD + MACKOREAN + MACARABI...