主頁(yè) > 知識(shí)庫(kù) > JSP 中Spring的Resource類(lèi)讀寫(xiě)中文Properties實(shí)例代碼

JSP 中Spring的Resource類(lèi)讀寫(xiě)中文Properties實(shí)例代碼

熱門(mén)標(biāo)簽:好操作的電話(huà)機(jī)器人廠家 如何用中國(guó)地圖標(biāo)注數(shù)字點(diǎn) 地圖標(biāo)注市場(chǎng)怎么樣 百度地圖添加標(biāo)注圖標(biāo)樣式 企業(yè)怎么在聯(lián)通申請(qǐng)400電話(huà) 南昌市地圖標(biāo)注app 南京新思維電話(huà)機(jī)器人 泰州泰興400電話(huà) 怎么申請(qǐng) 聊城智能電銷(xiāo)機(jī)器人外呼

JSP 中Spring的Resource類(lèi)讀寫(xiě)中文Properties

摘要: Spring對(duì)Properties的讀取進(jìn)行了完善而全面的封裝,對(duì)于寫(xiě)則仍需配合FileOutputStream進(jìn)行。

 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;

 /**
  * 注意事項(xiàng):
  * 1、properties放在source目錄下
  * 2、param.properties至少有一對(duì)鍵值對(duì)
  */
 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();
   }
  }
 }
}


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

您可能感興趣的文章:
  • Spring實(shí)戰(zhàn)之ResourceLoader接口資源加載用法示例
  • Spring實(shí)戰(zhàn)之ServletContextResource訪問(wèn)資源文件示例
  • Spring實(shí)戰(zhàn)之FileSystemResource加載資源文件示例
  • Spring實(shí)戰(zhàn)之使用ClassPathResource加載xml資源示例
  • Spring實(shí)戰(zhàn)之使用@Resource配置依賴(lài)操作示例
  • Spring注解@Resource和@Autowired區(qū)別對(duì)比詳解
  • 詳解Spring關(guān)于@Resource注入為null解決辦法
  • 詳解SpringBoot開(kāi)發(fā)使用@ImportResource注解影響攔截器
  • 詳解Spring注解--@Autowired、@Resource和@Service
  • Spring 中 @Service 和 @Resource 注解的區(qū)別
  • Spring框架中 @Autowired 和 @Resource 注解的區(qū)別
  • Spring實(shí)戰(zhàn)之ResourceLoaderAware加載資源用法示例

標(biāo)簽:銅川 烏蘭察布 臨汾 白銀 開(kāi)封 山南 吉林 自貢

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