<small id='Ga9Gm'></small><noframes id='Ga9Gm'>

      <tfoot id='Ga9Gm'></tfoot>
    1. <i id='Ga9Gm'><tr id='Ga9Gm'><dt id='Ga9Gm'><q id='Ga9Gm'><span id='Ga9Gm'><b id='Ga9Gm'><form id='Ga9Gm'><ins id='Ga9Gm'></ins><ul id='Ga9Gm'></ul><sub id='Ga9Gm'></sub></form><legend id='Ga9Gm'></legend><bdo id='Ga9Gm'><pre id='Ga9Gm'><center id='Ga9Gm'></center></pre></bdo></b><th id='Ga9Gm'></th></span></q></dt></tr></i><div id='Ga9Gm'><tfoot id='Ga9Gm'></tfoot><dl id='Ga9Gm'><fieldset id='Ga9Gm'></fieldset></dl></div>
      <legend id='Ga9Gm'><style id='Ga9Gm'><dir id='Ga9Gm'><q id='Ga9Gm'></q></dir></style></legend>

        • <bdo id='Ga9Gm'></bdo><ul id='Ga9Gm'></ul>

        在 Eclipse 项目中使用西里尔文 .properties 文件

        时间:2024-08-25
        • <small id='Fc714'></small><noframes id='Fc714'>

              <tbody id='Fc714'></tbody>

                <tfoot id='Fc714'></tfoot>

                <legend id='Fc714'><style id='Fc714'><dir id='Fc714'><q id='Fc714'></q></dir></style></legend>
                • <bdo id='Fc714'></bdo><ul id='Fc714'></ul>
                  <i id='Fc714'><tr id='Fc714'><dt id='Fc714'><q id='Fc714'><span id='Fc714'><b id='Fc714'><form id='Fc714'><ins id='Fc714'></ins><ul id='Fc714'></ul><sub id='Fc714'></sub></form><legend id='Fc714'></legend><bdo id='Fc714'><pre id='Fc714'><center id='Fc714'></center></pre></bdo></b><th id='Fc714'></th></span></q></dt></tr></i><div id='Fc714'><tfoot id='Fc714'></tfoot><dl id='Fc714'><fieldset id='Fc714'></fieldset></dl></div>
                • 本文介绍了在 Eclipse 项目中使用西里尔文 .properties 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在开发一个小项目,我想为它使用国际化.问题是当我尝试使用带有西里尔符号的 .properties 文件时,文本显示为垃圾.当我对字符串进行硬编码时,它显示得很好.

                  I'm developing a small project and I'd like to use internationalization for it. The problem is that when I try to use .properties file with cyrillic symbols inside, the text is displayed as rubbish. When I hard-code the strings it's displayed just fine.

                  这是我的代码:

                  ResourceBundle labels = ResourceBundle.getBundle("Labels");
                  btnQuit = new JButton(labels.getString("quit"));
                  

                  在我的 .properties 文件中:

                  And in my .properties file:

                  退出 = Изход

                  我得到了垃圾.当我尝试

                  And I get rubbish. When i try

                  btnQuit = new JButton("Изход);
                  

                  显示正确.据我所知,UTF-8 是用于文件的编码.

                  It is displayed correctly. As far as I am aware, UTF-8 is the encoding used for the files.

                  有什么想法吗?

                  推荐答案

                  AnyEdit 是一个eclipse-插件,可让您轻松地将属性文件从 unicode 符号转换为 unicode 符号.(避免使用像 native2ascii 这样的命令行工具)

                  AnyEdit is an eclipse-plugin that allows you to easily convert your your properties files from and to unicode notation. (avoiding the use of command-line tools like native2ascii)

                  如果您使用的是 Properties 单独的类(没有资源包),从 Java 1.6 开始,您可以选择 用自定义编码加载文件,使用 Reader(而不是 InputStream)

                  If you were using the Properties class alone (without resource bundle), since Java 1.6 you have the option to load the file with a custom encoding, using a Reader (rather than an InputStream)

                  我猜你也可以使用 new PropertyResourceBundle(reader),而不是 ResourceBundle.getBundle(..),其中 reader 是:

                  I'd guess you can also use new PropertyResourceBundle(reader), rather than ResourceBundle.getBundle(..), where reader is:

                  Reader reader = new BufferedReader(new InputStreamReader(
                       getClass().getResourceAsStream("messages.properties"), "utf-8")));
                  

                  这篇关于在 Eclipse 项目中使用西里尔文 .properties 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:有没有办法在 Java 中检测 RTL 语言? 下一篇:如何使报表页面方向更改为“rtl"?

                  相关文章

                • <i id='zwduD'><tr id='zwduD'><dt id='zwduD'><q id='zwduD'><span id='zwduD'><b id='zwduD'><form id='zwduD'><ins id='zwduD'></ins><ul id='zwduD'></ul><sub id='zwduD'></sub></form><legend id='zwduD'></legend><bdo id='zwduD'><pre id='zwduD'><center id='zwduD'></center></pre></bdo></b><th id='zwduD'></th></span></q></dt></tr></i><div id='zwduD'><tfoot id='zwduD'></tfoot><dl id='zwduD'><fieldset id='zwduD'></fieldset></dl></div>
                • <small id='zwduD'></small><noframes id='zwduD'>

                  <legend id='zwduD'><style id='zwduD'><dir id='zwduD'><q id='zwduD'></q></dir></style></legend>

                    1. <tfoot id='zwduD'></tfoot>
                        <bdo id='zwduD'></bdo><ul id='zwduD'></ul>