K formátování zpráv použijte java.text.MessageFormat.
public static void main(String[] args){
final String MSG_FORMATSTRING="Rational Developer {0} verze
{1}";
final String VERSION = "verze";
final String EDITION = "edice";
final String JAVA = "Pro Javu";
final String MOJE_PROSTREDKY = "mojeProstredky";
ResourceBundle mojeProstredky = ResourceBundle.getBundle(MOJE_PROSTREDKY, Locale.US );
String version = mojeProstredky.getString(VERSION);
String edition = mojeProstredky.getString(EDITION);
MessageFormat form = new MessageFormat(MSG_FORMATSTRING);
Object[] testArgs = {new Integer(6), JAVA};
System.out.println(form.format(testArgs));
}
|
|