该帖已经被评为良好帖
|
|
---|---|
作者 | 正文 |
发表时间:2006-10-16
不错,util是我们最熟悉的包了。
|
|
返回顶楼 | |
发表时间:2006-10-25
有没有ResourceBundle的使用实例.
|
|
返回顶楼 | |
发表时间:2006-10-26
还不错,不过JDK document还是应该看看。
|
|
返回顶楼 | |
发表时间:2006-11-08
henryno11 写道 有没有ResourceBundle的使用实例.
e310. 将消息本地化 Messages and text string should be localized in a resource bundle. There are several types of resource bundles. This example demonstrates how to use a property-file type resource bundle. Here are two examples of resource files: MyResources_en.properties: hello=Hello bye=Goodbye MyResources_fr.properties: hello=Bonjour bye=Au Revoir When loading a property-file resource bundle, a base name and desired locale is specified. The system then looks in the classpath for a file whose name matches one of the following patterns in order: basename_locale.properties basename.properties basename_defaultLocale.properties For example, given the base name MyResources, a locale of fr, and a default locale of en, the system first looks for MyResources_fr.properties MyResources.properties MyResources_en.properties Here's an example that loads a resource bundle: String baseName = "MyResources"; try { // Get the resource bundle for the default locale ResourceBundle rb = ResourceBundle.getBundle(baseName); String key = "hello"; String s = rb.getString(key); // Hello key = "bye"; s = rb.getString(key); // Goodbye // Get the resource bundle for a specific locale rb = ResourceBundle.getBundle(baseName, Locale.FRENCH); key = "hello"; s = rb.getString(key); // Bonjour key = "bye"; s = rb.getString(key); // Au Revoir } catch (MissingResourceException e) { // The resource bundle cannot be found or // the key does not exist in the resource bundle } http://www.javaref.cn/egs/java.text/LocMsg.html |
|
返回顶楼 | |
发表时间:2006-11-08
抛出异常的爱 写道 很是有用
不过这个例子集是否都是jdk的例子呢? http://www.javaref.cn/egs/index.html 有没有hibernate的例子集呢? 嘿,这个网站关注的人越来越多了, 这几天正在添加hibernate和spring的例子, 不出意外的话,下周你能看到! |
|
返回顶楼 | |
发表时间:2006-11-08
呵呵, 上来看看,温故知新阿
|
|
返回顶楼 | |
发表时间:2006-11-21
java参考中文站(在原有1094个中文示例)下的近期更新!
新加入 hibernate 示例90个 新加入 spring 示例60个 新加入 开发模式 示例74个 新加入 apache common包的应用 示例67个 新加入 ant 示例87个 新加入 j2me 示例220个 ..... 共更新java相关示例代码 4995例,欢迎广大java学者访问学习! |
|
返回顶楼 | |
发表时间:2006-11-22
楼主万岁
|
|
返回顶楼 | |
发表时间:2006-11-26
帖子被锁了!看看能不能发
|
|
返回顶楼 | |
发表时间:2006-11-26
这个bug已提交bug贴,版主,这篇是良好贴,好多人都喜欢,别锁了。。
|
|
返回顶楼 | |