gwt getKey 方法是否存在?

发布于 2024-10-16 21:10:38 字数 95 浏览 4 评论 0原文

我有文件 LocalizedResource_XXx.properties 。在java文件中,是否有.getKey(..)这样的方法,以便我可以在java文件中使用i18n?

i have file LocalizableResource_XXx.properties . inside java files, is there such method as .getKey(..) so that i can use i18n inside java files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾家有女初长成 2024-10-23 21:10:38

我不知道您想通过 .getKey(...) 获得什么,但我认为这段代码会对您有所帮助

for (String localeName : LocaleInfo.getAvailableLocaleNames()) {
            String displayName = LocaleInfo.getLocaleNativeDisplayName(localeName);
            Label label = new Label();
            label.setText(displayName);
            RootPanel.get("loc").add(label);
        }

并调查此链接 LocaleInfo.class

I don't know what do you want to get by .getKey(...) but I think this piece of code will be helpful to you

for (String localeName : LocaleInfo.getAvailableLocaleNames()) {
            String displayName = LocaleInfo.getLocaleNativeDisplayName(localeName);
            Label label = new Label();
            label.setText(displayName);
            RootPanel.get("loc").add(label);
        }

And survey this link LocaleInfo.class

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文