- 浏览: 938698 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (306)
- spring (20)
- ext (15)
- 其它综合 (8)
- svn (6)
- struts (1)
- java综合 (27)
- javascript (19)
- jquery (9)
- linux (56)
- tomcat (10)
- 数据库 (37)
- hibernate (9)
- seo (2)
- web前端 (3)
- 生活 (3)
- 软硬件 (11)
- python (5)
- apache (10)
- spring security (3)
- 好书分享 (4)
- ant (2)
- hudson (1)
- php (2)
- android (3)
- nginx (6)
- memcached (2)
- Tapestry (1)
- nodejs (2)
- cygwin (4)
- jboss (8)
- windows server (2)
- poi (1)
- css (5)
- weblogic (2)
- activemq (0)
- centos (4)
- sybase (1)
- lucene (2)
- daemontools (1)
- rabbitmq (2)
- zookeeper (1)
- nagios (1)
- jetty (4)
- ivy (1)
- maven (3)
- mysql (2)
- java设计 (1)
- redis (2)
- 二维码 (1)
- github (1)
最新评论
-
837030601:
很棒,虽然看不懂,楼主能给小白解释下不,解决问题了
mvn jetty:run 启动很慢解决办法 -
jevmok:
第二种方式错误无法添加;
jetty8 添加静态文件目录 -
JavaAiHaoZhezh:
...
spring在filter中注入bean -
zhanglongbin:
感谢楼主分享!!我遇到的问题:本地word转html 两个编码 ...
poi完美word转html(表格、图片、样式) -
wjs876046992:
文档编号显示不对,读出来全是1和1.1,我的文档是1,1.1, ...
poi完美word转html(表格、图片、样式)
public static void reloadProperties() { //Get a list of files loaded ArrayList<String> files = getFileList(); //Cycle through list and reload all files for (int icnt =0;icnt < files.size();icnt++) { loadPropertiesFile(files.get(icnt),true); } } public static boolean loadPropertiesFile(String filename, boolean reload) { //If property file is already loaded and reload is required then remove it from the loaded file list. if (propfiles.containsKey(filename)) { if (!reload) return true; propfiles.remove(filename); } try { //Find the property file on the class path and load it. System.out.println("Loading properties file: "+filename); ClassLoader loader = Thread.currentThread().getContextClassLoader(); InputStream is = loader.getResourceAsStream(filename); Properties props = new Properties(); props.load(is); //Add it to the hashtable propfiles.put(filename,props); return true; } catch (Exception e) { System.out.println("Failed to load properties file: "+e.getMessage()); return false; } } /** * getFileList - returns a sorted list of property file names that have been loaded */ public static ArrayList<String> getFileList() { //Get empty list ArrayList<String> files = new ArrayList<String>(); //Cycle through property files hash table and add names to the return list Set<String> keys = propfiles.keySet(); Iterator it = keys.iterator(); while (it.hasNext()) { files.add((String) it.next()); } //Sort list Collections.sort(files); return files; } public static String getValue(String propertiesFile,String key) { // If property file is not load it then load it now if (!propfiles.containsKey(propertiesFile)) { if (!loadPropertiesFile(propertiesFile,true)) { throw new RuntimeException("Failed to load properties file: "+propertiesFile); } } //Get the property file from the hashmap Properties props = propfiles.get(propertiesFile); //Return the property value try { System.out.println("Getting properties: "+key); return props.getProperty(key); } catch (Exception e) { System.out.println("Failed to find property in file"); throw new RuntimeException("Failed to find property"); } } public static void main(String[] args) { String value=getValue("my.properties","key1"); System.out.println("Printing Value:" + value); reloadProperties(); value=getValue("my.properties","key1"); System.out.println("Printing Value:" + value); }
发表评论
-
OmitStackTraceInFastThrow
2015-11-30 11:50 2183OmitStackTraceInFastThrow, jd ... -
classNotFoundException与noclassdeffoundError
2015-11-03 14:48 1025如名字所言,一个exception, 一个error, 而e ... -
Transfer-Encoding:chunked 和 PrintWriter.flush
2014-06-05 15:39 1094”一般http通信时会使用Content-Length头信息 ... -
一次JVM爆内存分析
2013-08-26 11:16 15291.应用没有死,但是响应非常慢,通过jstat查看到s0/s1 ... -
No generator named "uuid" is defined in the persistence unit
2013-08-01 14:55 8265You can turn the error off/down ... -
Connection reset by peer: socket write error原因
2012-08-16 17:33 0①:服务器的并发连接数超过了其承载量,服务器会将其中一些连接D ... -
匿名内部类参数必须为final类型
2012-06-25 18:59 0匿名内部类参数必须为final类型,这是因为防止内部类引用了一 ... -
url中文乱码解决
2012-06-25 09:54 10501.jsp页面添加:<%@ page language= ... -
java各种服务器默认servlet名称
2012-03-05 14:51 1435Tomcat, Jetty, JBoss, and Glass ... -
rt.jar ,dt.jar ,tool.jar都有什么用
2012-02-04 12:02 1413rt.jar是JAVA基础类库,dt.jar是关于运行环境的类 ... -
java字符串转时间
2011-11-01 10:24 1016public class bb { publ ... -
jstl日期比较
2011-08-24 20:22 1374<c:set var="nowDate&quo ... -
jstl numberFormat & dateFormat
2011-08-24 13:31 1491<fmt:formatNumber value=&quo ... -
cygwin下用jar命令
2011-07-13 17:06 1030需要将jdk下的jar.exe拷至$cygwin_home/b ... -
war包的打包与解压
2011-07-13 16:51 1616把当前目录下的所有文件打包成game.war jar -cvf ... -
java后台较验checkbox提交值
2011-06-22 16:03 1437String dontShow = (String)r ... -
jsp function tag 不支持继承的方法
2011-06-18 23:43 934jsp function tag 不支持继承的方法. 例如:M ... -
jstl fmt:formatDate
2011-05-29 14:10 1168fmt:formatDate 的输出格式 <fmt: ... -
jstl 关键字处理
2011-05-21 13:21 1043在使用jstl时,可能会遇到实体字段与jstl关键字相撞的情况 ... -
JSP页面利用标签判断时间前后
2011-05-05 15:02 1054<jsp:useBean id="now&qu ...
相关推荐
7. 使用`prop.setProperty(key, value)`设置或更新Properties中的键值对。 8. `prop.store(fos, "Update '" + key + "' value")`将修改保存回文件,并添加一个描述性注释。 9. 最后,关闭`fos`以确保所有更改都被...
动态加载`properties`文件是一项关键技能,特别是在大型应用程序中,它允许程序在运行时根据需要更新配置,而无需重启服务。下面我们将深入探讨动态加载`properties`的相关知识点。 1. **什么是.properties文件?**...
8. 运行时热更新:某些插件允许在应用程序运行时动态更新配置,无需重启服务,这对于快速调试和调整配置很有帮助。 在Maven中,常见的properties插件如maven-resources-plugin,可以通过`<build><plugins>`配置进行...
在本文中,我们将深入探讨如何将Drools 7与Spring Boot 2集成,实现动态更新规则的功能。Drools是一款强大的业务规则管理系统,而Spring Boot是Java领域广泛使用的微服务开发框架。通过结合这两者,我们可以构建一个...
这个库使得在运行时对配置进行【增删改查】操作变得简单,同时支持动态加载,从而实现配置的实时更新。 一、Apache Commons Configuration库介绍 Apache Commons Configuration库是Apache软件基金会的一个项目,...
`Properties`类提供了`setProperty`方法来设置或更新键值对,以及`store`方法将更改保存回文件。 ```java public static void writeProperties(String filePath, String parameterName, String parameterValue) { ...
`properties`文件是一种键值对的配置文件,它允许我们将不同语言的文本资源存储在独立的文件中,然后在运行时根据用户的选择动态加载相应的语言资源。然而,手动管理和维护这些文件可能会变得繁琐。为了简化这一过程...
这个库基于jQuery框架,利用.properties文件格式存储不同语言的文本资源,使得内容可以根据用户的地区设置动态切换。 jQuery i18n Properties 的核心功能在于其对.properties文件的处理。这些文件是一种常用的Java...
- **动态更新**:虽然Properties文件在应用启动时加载,但可以通过监听机制实现在运行时的动态更新。 ### 总结 Spring框架提供了强大且灵活的机制来处理Properties文件的读取和注入,这对于构建可配置性强、易于...
- **变量引用**:在Properties文件中可以使用`${}`引用其他系统属性或环境变量,以便于动态配置。 - **注释处理**:虽然Properties文件不强制要求注释,但在大型项目中,为键和值添加注释有助于理解文件内容。 - **...
在`LoginApp`这样的项目中,它为登录界面的文本提供了一种动态管理和更新的机制,极大地提高了代码的可复用性和可维护性。理解和熟练运用这类资源文件,对于提升Java开发效率和项目质量具有重要意义。
6. **资源绑定**:在Spring框架中,可以使用`@Value`注解将`.properties`文件中的属性值注入到Java bean的字段或方法中,实现配置的动态绑定。 7. **国际化(i18n)**:`.properties`文件也常用于实现应用的多语言...
5. **动态切换语言**:为了实现语言切换功能,你可以提供一个下拉菜单或其他控件,让用户选择所需的语言。在选择语言后,更新`language`参数并重新加载资源文件: ```javascript function changeLanguage(lang) { ...
- **配置管理**:应用的配置参数,如数据库连接信息、服务器端口等,通常存储在.properties文件中,便于管理和更新。 - **调试辅助**:通过Properties Editor,开发者能更高效地调试和调整这些配置,无需每次修改...
开发者可以使用`Properties`类提供的方法来动态更新和保存配置,以适应不同的运行环境。 总结一下,Java中读取`.properties`文件涉及的关键知识点包括: 1. `.properties`文件的格式和结构。 2. `java.util....
在Java编程中,读取`properties`文件是一个常见的任务,这些文件通常用于存储应用程序的配置信息,如数据库连接字符串、...在实际开发中,根据项目需求,还可以实现更多的功能,如动态更新配置、支持不同环境的配置等。
此外,jquery.i18n.properties插件还支持动态改变当前语言环境,只需重新调用`$.i18n.properties`并传入新的语言代码即可。这使得在用户更改语言设置时,无需刷新页面就能实时更新内容。 在实际项目中,前端开发者...
只需重新调用`.i18n.properties`并传入新的语言标识,即可实时更新页面上的文本。 7. **优化与性能** 考虑到前端性能,可以将`.properties`文件转换成JSON格式,或者利用服务端缓存和CDN加速文件的加载。此外,...
开发者可以在HTML或JavaScript中引用这些文本,实现动态更新。 4. **语言切换**:当用户需要切换语言时,可以通过调用插件提供的方法,重新加载对应的.properties文件,并更新页面上的文本。 5. **国际化日期和...