Использование «cat» для записи неанглийских символов в файл .html (в R) - PullRequest
3 голосов
/ 20 сентября 2011

Вот код, показывающий проблему:

myPath = getwd()
cat("abcd", append = T, file =paste(myPath,"temp1.html", sep = "\\")) # This is fine
cat("<BR/><BR/><BR/>", append = T, file =paste(myPath,"temp1.html", sep = "\\")) # This is fine
cat("שלום", append = F, file =paste(myPath,"temp1.html", sep = "\\")) # This text gets garbled when the html is opened using google chrome on windows 7.
cat("שלום", append = F, file =paste(myPath,"temp1.txt", sep = "\\")) # but if I open this file in a text editor - the text looks fine

# The text in the HTML folder would look as if I where to run this in R:
(x <- iconv("שלום", from = "CP1252", to = "UTF8") )
# But if I where to try and put it into the file, it wouldn't put anything in:
cat(x, append = T, file =paste(myPath,"temp1.html", sep = "\\")) # empty

Edit: Я также попытался использовать следующую кодировку (без успеха)

ff <-file(paste(myPath,"temp1.html", sep = "\\"), encoding="CP1252")
cat("שלום", append = F, file =ff)
ff<-file(paste(myPath,"temp1.html", sep = "\\"), encoding="utf-8")
cat("שלום", append = F, file =ff)
ff<-file(paste(myPath,"temp1.html", sep = "\\"), encoding="ANSI_X3.4-1986")
cat("שלום", append = F, file =ff)
ff<-file(paste(myPath,"temp1.html", sep = "\\"), encoding="iso8859-8")
cat("שלום", append = F, file =ff)

Есть предложения? Спасибо.

Ответы [ 3 ]

1 голос
/ 20 сентября 2011

Ваш код немного избыточен. temp1.txt в строке 5 - опечатка (.html)? В любом случае, возможно, вам следует установить charset в теге <meta>.

Взять это в качестве примера:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
cat("abcd")
cat("<BR/><BR/><BR/>")
cat("שלום")
cat("שלום")
(x <- iconv("שלום", from = "CP1252", to = "UTF8") )
cat(x)
-%>
</body>
</html>

Это код brew, поэтому, если вы продолжите и brew его получите, вы получите правильный ответ. Короче говоря, ключевое слово было кодировка .

1 голос
/ 20 сентября 2011

Попробуй так

cat("abcd", file = (con <- file("temp1.html", "w", encoding="UTF-8"))); close(con)
1 голос
/ 20 сентября 2011

Проблема не в R (R правильно производит вывод в кодировке UTF-8)… просто ваш веб-браузер принимает неправильную кодировку в отсутствие явно указанной кодировки.Просто используйте вместо этого следующий фрагмент (изнутри R):

<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
    </head>
    <body>
        שלום
    </body>
</html>

Это указывает на правильную кодировку (UTF-8) и, следовательно, заставляет браузер правильно обрабатывать следующий текст.

...