<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
I am on windows.<br>
As a test I altered the SimpleFileReader to open the file up
specifically in UTF-8, which I believe worked.  However, when I did
this, no text was displayed to the display actor in Kepler.  But I did
have the output print out to stdout (even if it did just print a bunch
of "?").<br>
<br>
Also, if I have a default install of Kepler, how do I modify arguments
to the JVM?<br>
--<br>
Matt<br>
<br>
Peter Reutemann wrote:
<blockquote
 cite="mid:548e07050911171112n5cf41620h12c8769889a033c4@mail.gmail.com"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">Is there support for UTF-8 encoded files/strings?
I have data which is encoded in UTF-8 which does not seem to be able to be
read by the SimpleFileReader actor when dumping the text directly to the
display.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Java natively supports UTF-8, but it always depends on the platform
that you're working on. If you're on Windows, then the default
encoding is CP1252 and not UTF-8 (as on my Ubuntu box).

You can change the default encoding being used by starting the JVM
with a specific "file.encoding" parameter:
  java -Dfile.encoding=utf-8 -classpath ...

NB: Haven't tested that with Kepler, but I've come across that problem
with a different software package.

Cheers, Peter
  </pre>
</blockquote>
<br>
</body>
</html>