Struts.I18N

 1 import java.util.Locale;
 2 import java.util.ResourceBundle;
 3 
 4 
 5 public class Test {
 6     public static void main(String[] args) {
 7         ResourceBundle res = ResourceBundle.getBundle("app", Locale.CHINA);
 8         System.out.println(res.getString("welcome.msg" ));
 9     }
10 }

 

posted @ 2013-03-15 21:27  hi_stefen  Views(151)  Comments(0)    收藏  举报