⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.java

📁 java的经典例子
💻 JAVA
字号:
import java.text.MessageFormat;import java.util.*;class Main {    static public void main(String[] args) {        Locale loc = Locale.FRENCH;        // Create a message format and set its locale.        MessageFormat mf = new MessageFormat("");        mf.setLocale(loc);        // Create a resource bundle object and load the bundle.        ResourceBundle myResources = null;        myResources = ResourceBundle.getBundle("MyResources", loc);        // Assign the first 4 objects from the bundle to an array.        Object[] arguments = {               new Integer(7),            new Long(System.currentTimeMillis()),            myResources.getString("color"),             myResources.getString("animal"),         };         // Create a string buffer for the format method result.        StringBuffer strbuf = new StringBuffer("");        // Get the pattern from resource bundle and apply it to mf.        mf.applyPattern(myResources.getString("pattern"));        // Format the objects in the arguments array to the string buffer.        StringBuffer result = mf.format(arguments, strbuf, null);        // Print the formatted string.        System.out.println(result);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -