栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何使用真正的多语言字符串制作应用程序?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何使用真正的多语言字符串制作应用程序?

听起来像您想要一个

ChoiceFormat
,或者至少使用一个到一个
MessageFormat

public static void main(String... args) {    String[] formats = {         // NOTE - In a real app, you'd fetch the format strings from a language,        // file, not hard-pre them in your program. Obviously.        "{0,number} {0,choice,0#years|1#year|1<years}", // english        "{0,number} {0,choice,0#años|1#año|1<años}", // spanish        "{0,number} {0,choice,1#[fewer than 2]|2#lata|4<lat}", // polish        "{0,number} år", // swedish - singular and plural forms look the same!    };    int[] years = {0, 1, 2, 3, 4, 5, 6};    for (int year : years) {        for (String format : formats) { System.out.println(MessageFormat.format(format, year));        }        System.out.println();    }}

在您的程序中,您当然会

format
从字符串文件中获取字符串。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/429083.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号