Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.ruby > #3442 > unrolled thread

Encoding issue under Windows

Started byAndrey Mikhaylov <lolmaus@gmail.com>
First post2011-04-24 13:06 -0500
Last post2011-04-25 16:54 -0500
Articles 2 — 2 participants

Back to article view | Back to comp.lang.ruby


Contents

  Encoding issue under Windows Andrey Mikhaylov <lolmaus@gmail.com> - 2011-04-24 13:06 -0500
    Re: Encoding issue under Windows Roger Pack <rogerpack2005@gmail.com> - 2011-04-25 16:54 -0500

#3442 — Encoding issue under Windows

FromAndrey Mikhaylov <lolmaus@gmail.com>
Date2011-04-24 13:06 -0500
SubjectEncoding issue under Windows
Message-ID<46b2d94ca1e061f27c5e7da5808c0d35@ruby-forum.com>
Windows console works with the CP866 encoding.

So input and output should be redefined to CP866.

This thread http://www.ruby-forum.com/topic/184730 suggests a nice
solution:

``````
Encoding.default_external = Encoding.find(Encoding.locale_charmap)
Encoding.default_internal = __ENCODING__

[STDIN, STDOUT, STDERR].each do |io|
  io.set_encoding(Encoding.default_external, Encoding.default_internal)
end
``````

And it works. The text is now correctly displayed in Windows console.

But the code crashes whenever Ruby faces a string that contains a
non-CP866 character (like em dash "—"):

in `write': U+2014 from UTF-8 to IBM866
(Encoding::UndefinedConversionError)

How do i overcome this error? Not using UTF-8 is not an option.

Iconv has a nice solution: add "//IGNORE" to encoding name and error no
longer takes place. But IO does not recognize "//IGNORE", so this
solution i unacceptable.

I can't use Iconv instead of IO due to the following reason. I use
RubyMine. Unlike Windows console, RubyMine console works in pure UTF-8.
But whenever code run by RubyMine writes to disk, it seems to use
Windows encoding because text gets written in corrupt encoding. :( And i
do not know a way to distinguish RubyMine from Windows console so that
my program could perfrom only the conversions necessary for the current
environment.

-- 
Posted via http://www.ruby-forum.com/.

[toc] | [next] | [standalone]


#3480

FromRoger Pack <rogerpack2005@gmail.com>
Date2011-04-25 16:54 -0500
Message-ID<16ea5f387dadf1a9b128f54494c45656@ruby-forum.com>
In reply to#3442
I'd ping core on this one.

-- 
Posted via http://www.ruby-forum.com/.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.ruby


csiph-web