JSP 中Spring的Resource类读写中文Properties实例代码
更新时间:2017年03月29日 11:20:11 投稿:lqh
这篇文章主要介绍了JSP 中Spring的Resource类读写中文Properties实例代码的相关资料,需要的朋友可以参考下
JSP 中Spring的Resource类读写中文Properties
摘要: Spring对Properties的读取进行了完善而全面的封装,对于写则仍需配合FileOutputStream进行。
package com.oolong.common.util; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import java.io.*; import java.util.*; public class UserVar { private static String configFile = "classpath*:param.properties"; private static org.springframework.core.io.Resource resourceWritable; private static Properties p; /** * 注意事项: * 1、properties放在source目录下 * 2、param.properties至少有一对键值对 */ static { p = new Properties(); org.springframework.core.io.Resource[] resources = null; try { ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); resources = resolver.getResources(configFile); if (resources != null) { for (org.springframework.core.io.Resource r : resources) { if (r != null) { p.load(r.getInputStream()); resourceWritable = r; } } } } catch (IOException e1) { e1.printStackTrace(); } } public static String get(String key) { String v = (String) p.get(key); if (v != null) { try { return new String(v.getBytes("ISO-8859-1"), "GBK"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); return null; } } return null; } public static void set(String key,String value){ if (null != resourceWritable) { try { OutputStream fos = new FileOutputStream(resourceWritable.getFile()); Properties p = new Properties(); p.load(resourceWritable.getInputStream()); value = new String(value.getBytes("GBK"),"ISO-8859-1"); p.setProperty(key, value); p.store(fos, null); fos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
您可能感兴趣的文章:
- Spring实战之ResourceLoader接口资源加载用法示例
- Spring实战之ServletContextResource访问资源文件示例
- Spring实战之FileSystemResource加载资源文件示例
- Spring实战之使用ClassPathResource加载xml资源示例
- Spring实战之使用@Resource配置依赖操作示例
- Spring注解@Resource和@Autowired区别对比详解
- 详解Spring关于@Resource注入为null解决办法
- 详解SpringBoot开发使用@ImportResource注解影响拦截器
- 详解Spring注解--@Autowired、@Resource和@Service
- Spring 中 @Service 和 @Resource 注解的区别
- Spring框架中 @Autowired 和 @Resource 注解的区别
- Spring实战之ResourceLoaderAware加载资源用法示例
相关文章
在JSP中使用formatNumber控制要显示的小数位数方法
下面小编就为大家分享一篇在JSP中使用formatNumber控制要显示的小数位数方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2017-11-11JSP中的FORM表单中只有一个input文本时,按回车键将会自动提交表单
这篇文章主要介绍了JSP中的FORM表单中只有一个input文本的时候,按回车键将会自动将表单提交的相关资料,需要的朋友可以参考下2017-01-01
最新评论