JSP 中Spring的Resource类读写中文Properties摘要: Spring对Properties的读取进行了完善而全面的封装,对于写则仍需配合FileOutputStream进行。 package com.oolong.common....
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();
}
}
}
}
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
沃梦达教程
本文标题为:JSP 中Spring的Resource类读写中文Properties实例代码
基础教程推荐
猜你喜欢
- JavaWeb 实现验证码功能(demo) 2024-04-14
- Java+mysql实现学籍管理系统 2023-03-16
- 是否适合从javabean类更新数据库? 2023-11-04
- Java中EnvironmentAware 接口的作用 2023-01-23
- springboot下使用shiro自定义filter的个人经验分享 2024-02-27
- 深入理解约瑟夫环的数学优化方法 2024-03-07
- Java编写实现窗体程序显示日历 2023-01-02
- 使用Java和WebSocket实现网页聊天室实例代码 2024-02-25
- 运用El表达式截取字符串/获取list的长度实例 2023-08-01
- JSP 动态树的实现 2023-12-17
