2013.7.25 获取系统当前编码集,微信开放平台API

1,获取系统当前编码集:

 	 Properties initProp = new Properties(System.getProperties());  
         System.out.println("file.encoding:"+initProp.getProperty("file.encoding"));  
         System.out.println("file.encoding:"+initProp.getProperty("user.language"));  

2,微信开放平台API

调用这段代码后:api.registerApp(Constant.WEIXIN_APP_ID); 在“加号”那里才能看到自己的应用。

你可能感兴趣的:(2013.7.25 获取系统当前编码集,微信开放平台API)