国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP 中Spring的Resource類讀寫中文Properties實例代碼

2020-07-27 21:24:24
字體:
供稿:網(wǎng)友

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();   }  } }}

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 外汇| 龙里县| 洛扎县| 琼结县| 富蕴县| 鲁山县| 汉阴县| 阆中市| 克什克腾旗| 靖江市| 洪泽县| 体育| 江永县| 台北市| 横峰县| 威信县| 盐亭县| 吉木萨尔县| 太康县| 浦东新区| 吉林市| 自治县| 慈利县| 上虞市| 龙南县| 岗巴县| 屏东县| 萨嘎县| 洛阳市| 屏南县| 孙吴县| 辽中县| 葵青区| 泰和县| 富顺县| 喀喇沁旗| 凤山市| 信宜市| 兴文县| 安陆市| 中江县|