<?xml version="1.0" encoding="GBK"?> <project name="spring" basedir="." default=""> <property name="src" value="src"/> <property name="dest" value="classes"/> <path id="classpath"> <fileset dir="../../lib"> <include name="**/*.jar"/> </fileset> <pathelement path="${dest}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dest}"/> <mkdir dir="${dest}"/> <copy todir="${dest}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="${dest}" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src path="${src}"/> <classpath refid="classpath"/> <compilerarg value="-Xlint:deprecation"/> </javac> </target> <target name="run" description="Run the main class" depends="compile"> <java classname="lee.SpringTest" fork="yes" failonerror="true"> <classpath refid="classpath"/> </java> </target> </project>
<?xml version="1.0" encoding="GBK"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <!-- 驱动Spring调用messageSource Bean的setBasenames()方法, 该方法需要一个数组参数,使用list元素配置多个数组元素 --> <property name="basenames"> <list> <value>message</value> <!-- 如果有多个资源文件,全部列在此处 --> </list> </property> </bean> </beans>
hello=欢迎你,{0} now=现在时间是:{0}
hello=welcome,{0} now=now is :{0}
hello=\u6b22\u8fce\u4f60\uff0c{0} now=\u73b0\u5728\u65f6\u95f4\u662f\uff1a{0}
package lee;import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;import java.util.*; /** * Description: * <br/>网站: <a href="http://www.crazyit.org">疯狂Java联盟</a> * <br/>Copyright (C), 2001-2016, Yeeku.H.Lee * <br/>This program is protected by copyright laws. * <br/>Program Name: * <br/>Date: * @author Yeeku.H.Lee kongyeeku@163.com * @version 1.0 */ public class SpringTest { public static void main(String[] args)throws Exception { // 实例化ApplicationContext ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); // 使用getMessage()方法获取本地化消息。 // Locale的getDefault方法返回计算机环境的默认Locale String hello = ctx.getMessage("hello" , new String[]{"孙悟空"} , Locale.getDefault(Locale.Category.FORMAT)); String now = ctx.getMessage("now" , new Object[]{new Date()} , Locale.getDefault(Locale.Category.FORMAT)); // 打印出两条本地化消息 System.out.println(hello); System.out.println(now); } }
来源:https://www.cnblogs.com/tszr/p/12370291.html