日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

今天 学习用到的一些知识(properties 读取,js 删除元素)

發(fā)布時間:2025/3/13 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 今天 学习用到的一些知识(properties 读取,js 删除元素) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1.properties文件位置的關系:當properties文件放在src目錄下時,編譯會自動把src里的文件放到bin文件平級,因此可用this.getClass.getClassLoader.getResourceAsStream(fileName)讀取,當把properties文件放到包里時,則應加相應的包路徑,如:

props.load(Test.class.getClassLoader().getResourceAsStream("abc.properties"));

package
wang.hhtp;import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Properties;public class PropertiesUtils {private static PropertiesUtils propertiesUtils=null;private static Map<String,String> proMap=new HashMap<String,String>();private PropertiesUtils(){ InputStream inputStream=null;try {Properties pro=new Properties();inputStream =getClass().getClassLoader().getResourceAsStream("abc.properties");pro.load(inputStream);Iterator ite=pro.keySet().iterator();while(ite.hasNext()){String key=(String) ite.next();String value=pro.getProperty(key);proMap.put(key, value);}} catch (IOException e) {e.printStackTrace();}finally{try {inputStream.close();} catch (IOException e) {e.printStackTrace();}}}public static PropertiesUtils getInstance(){if(propertiesUtils ==null){propertiesUtils=new PropertiesUtils();}return propertiesUtils;}public String getValue(String key){PropertiesUtils pro= PropertiesUtils.getInstance();if(StringUtils.isNotBlank(key)){String value=pro.proMap.get(key);return value;}return key;} }

?

2.也可以用 static ?類靜態(tài)加載

class Properties{private static Properties props = new Properties();static {try {props.load(Test.class.getClassLoader().getResourceAsStream("com/abc.properties"));} catch (Exception e) {e.printStackTrace();}}public static String getProperty(String key){return props.getProperty(key);} }

?

?

?

3.js ?刪除 數(shù)組某個元素

參考:http://my.oschina.net/u/2331760/blog/511439

?

轉載于:https://www.cnblogs.com/heibaishizhe/p/5393797.html

總結

以上是生活随笔為你收集整理的今天 学习用到的一些知识(properties 读取,js 删除元素)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。