JSP 中Spring的Resource类读写中文Properties实例代码
网络编程 2021-07-05 11:23www.168986.cn编程入门
这篇文章主要介绍了JSP 中Spring的Resource类读写中文Properties实例代码的相关资料,需要的朋友可以参考下
JSP 中Spring的Resource类读写中文Properties
摘要: Spring对Properties的读取进行了完善而全面的封装,对于写则仍需配合FileOutputStream进行。
package .oolong.mon.util; import .springframework.core.io.support.PathMatchingResourcePatternResolver; import .springframework.core.io.support.ResourcePatternResolver; import java.io.; import java.util.; public class UserVar { private static String configFile = "classpath:param.properties"; private static .springframework.core.io.Resource resourceWritable; private static Properties p; / 注意事项: 1、properties放在source目录下 2、param.properties至少有一对键值对 / static { p = new Properties(); .springframework.core.io.Resource[] resources = null; try { ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); resources = resolver.getResources(configFile); if (resources != null) { for (.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(); } } } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
编程语言
- 宿迁百度关键词排名指南:实现精准营销的关键
- 四川SEO优化怎么做网络推广
- 立昂技术备案老域名收购:如何为您的业务赋能
- 安徽百度关键词seo贵不贵,一般需要多少钱
- 吉林百度快照排名怎么做电话营销
- 多伦新手做SEO怎么做
- 甘肃优化关键词排名推广怎么做论坛营销
- 沙雅SEO网站推广:提升您的在线可见性
- 四川SEO优化如何提升销售额和销售量
- 聂荣网站排名优化:提升网站可见性的全方位指
- 涞水SEO:提升地方企业在线可见性的策略
- 辽宁百度seo排名怎样做网站排名
- 临湘哪有关键词排名优化:提升网站可见度的关
- 黑龙江百度网站优化有没有优惠
- 凉城优化关键词排名推广:提升您的网络可见性
- 萝北整站优化:提升您网站流量和排名的全面指