Can't find bundle for base name ClientMessages, locale zh_CN

简介: 这是个关于JAVA国际化方面的语音包的问题。   提示这个错误信息就是说找不到代码里写的配置文件。   我这个错误发生在导入一个已经存在的项目时发生的。   解决办法:将配置文件*.properties所在的文件夹加入到项目的build path中。

 

这是个关于JAVA国际化方面的语音包的问题。

 

提示这个错误信息就是说找不到代码里写的配置文件。

 

我这个错误发生在导入一个已经存在的项目时发生的。

 

解决办法:将配置文件*.properties所在的文件夹加入到项目的build path中。

 

比如我这个项目是将所有的*.properties文件放在config文件夹下的。

 

那么右击项目属性->Java Build Path->Source->Add Folder加入config文件夹即可。

 

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.

引申阅读:

实际上系统在寻找配置文件时,是从source目录里面开始寻找的。

所以我们的目的就是把这些配置文件放到source目录里面就行了。

因此,我们除了上面的方法外也可以直接将*.properties文件直接放到src目录下,也能解决问题。

 

 

参考URL:http://edwar12345.blog.chinajavaworld.com/entry/7967/0/

http://wandejun1012.iteye.com/blog/1214285

 

相关文章
|
5月前
|
存储 JSON 数据格式
解决使用flutter_intl出现警告No @@locale or _locale field found in intl_en
解决使用flutter_intl出现警告No @@locale or _locale field found in intl_en
96 2
|
8月前
|
Unix Linux Perl
用sed将每一行中的old_text替换为new_text
用sed将每一行中的old_text替换为new_text
53 3
|
XML 编解码 数据格式
python报错 ‘utf-8‘ codec can‘t encode characters in position xxxx-xxxx: surrogates not allowed
python报错 ‘utf-8‘ codec can‘t encode characters in position xxxx-xxxx: surrogates not allowed
519 0
Fall back to translate ‘用户中心‘ key with ‘zh‘ locale.
1.一般情况下是没有定义’xxxx’字段对应的翻译 2.仔细看一下要更改的语言与下面的K值是否匹配的上
339 0
Fall back to translate ‘用户中心‘ key with ‘zh‘ locale.
Could not initialize English chunker/Could not load file from classpath: ‘/en-token.bin‘
Could not initialize English chunker/Could not load file from classpath: ‘/en-token.bin‘
118 0
Could not find com.serenegiant:common:4.1.1
Could not find com.serenegiant:common:4.1.1
266 0
【错误记录】国际化报错 ( “xxx“ is not translated in “zh“ (Chinese) )
【错误记录】国际化报错 ( “xxx“ is not translated in “zh“ (Chinese) )
381 0
【错误记录】国际化报错 ( “xxx“ is not translated in “zh“ (Chinese) )
Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta
Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta
Unity报错:Read only asset Packages/com.xxxxx.xxx.xxxx/Editor/VSCodeDiscovery.cs.IPGSD has no meta
|
Linux Shell
【Centos】-bash: warning: setlocale: LC_CTYPE: cannot change locale (“zh_CN.UTF-8”): No such file o...
背景: 版本为 centos 6.7,Linux中文显示 原因 echo '$LANG="zh_CN.UTF-8"' >/etc/sysconfig/i18n 解决方案: [root@oldboy ~]# locale -a |grep zh zh_CN zh_CN.
4457 0