主頁 > 知識庫 > JSP 中Spring的Resource類讀寫中文Properties實例代碼

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

熱門標簽:好操作的電話機器人廠家 如何用中國地圖標注數字點 地圖標注市場怎么樣 百度地圖添加標注圖標樣式 企業(yè)怎么在聯通申請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實戰(zhàn)之ResourceLoader接口資源加載用法示例
  • Spring實戰(zhàn)之ServletContextResource訪問資源文件示例
  • Spring實戰(zhàn)之FileSystemResource加載資源文件示例
  • Spring實戰(zhàn)之使用ClassPathResource加載xml資源示例
  • Spring實戰(zhàn)之使用@Resource配置依賴操作示例
  • Spring注解@Resource和@Autowired區(qū)別對比詳解
  • 詳解Spring關于@Resource注入為null解決辦法
  • 詳解SpringBoot開發(fā)使用@ImportResource注解影響攔截器
  • 詳解Spring注解--@Autowired、@Resource和@Service
  • Spring 中 @Service 和 @Resource 注解的區(qū)別
  • Spring框架中 @Autowired 和 @Resource 注解的區(qū)別
  • Spring實戰(zhàn)之ResourceLoaderAware加載資源用法示例

標簽:銅川 烏蘭察布 臨汾 白銀 開封 山南 吉林 自貢

巨人網絡通訊聲明:本文標題《JSP 中Spring的Resource類讀寫中文Properties實例代碼》,本文關鍵詞  JSP,中,Spring,的,Resource,類,;如發(fā)現本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《JSP 中Spring的Resource類讀寫中文Properties實例代碼》相關的同類信息!
  • 本頁收集關于JSP 中Spring的Resource類讀寫中文Properties實例代碼的相關信息資訊供網民參考!
  • 推薦文章