1

保存後のプロパティ ファイルが Eclipse プロジェクトで .properties.txt として表示されるのはなぜですか。ファイルをパッケージの src フォルダーに配置しましたが、バンドルが見つからないという例外がスローされます。

package array;
import java.util.*;
public class AddingToList {
static public void main(String[] args) {

    String language;
    String country;

    if (args.length != 2) {
        language = new String("en");
        country = new String("US");
    } else {
        language = new String(args[0]);
        country = new String(args[1]);
    }

    Locale currentLocale;
    ResourceBundle messages;

    currentLocale = new Locale(language, country);

    messages = ResourceBundle.getBundle("MessagesBundle", currentLocale);
    System.out.println(messages.getString("greetings"));
    System.out.println(messages.getString("inquiry"));
    System.out.println(messages.getString("farewell"));
}

}

4

1 に答える 1

0

コメントから回答、承認まで:

メッセージ バンドルは「デフォルト パッケージ」にある必要があります + バンドルへの呼び出しは必要です"/MessagesBundle"

于 2013-10-30T12:49:41.677 に答える