主页 > 知识库 > JSP 中Spring的Resource类读写中文Properties实例代码

JSP 中Spring的Resource类读写中文Properties实例代码

热门标签:好操作的电话机器人厂家 如何用中国地图标注数字点 地图标注市场怎么样 百度地图添加标注图标样式 企业怎么在联通申请400电话 南昌市地图标注app 南京新思维电话机器人 泰州泰兴400电话 怎么申请 聊城智能电销机器人外呼

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 中Spring的Resource类读写中文Properties实例代码》,本文关键词  JSP,中,Spring,的,Resource,类,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《JSP 中Spring的Resource类读写中文Properties实例代码》相关的同类信息!
  • 本页收集关于JSP 中Spring的Resource类读写中文Properties实例代码的相关信息资讯供网民参考!
  • 企业400电话

    智能AI客服机器人
    15000

    在线订购

    合计11份范本:公司章程+合伙协议+出资协议+合作协议+股权转让协议+增资扩股协议+股权激励+股东会决议+董事会决议

    推荐文章