Map 的Properties集合存储IO流对象
生活随笔
收集整理的這篇文章主要介紹了
Map 的Properties集合存储IO流对象
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package IODemo;import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Properties;/*** @author Alina* @date 2021年12月07日 11:29 下午* 集合IO一起使用* Map接口實現Hashtable 子類 Properties* 特點:線程安全,泛型String* Properties 存儲和取出完全依賴于Map集合的(KeySet entrySet put )* setProperties (String Key ,String value)存儲鍵值對到集合* String getProperties (String Key ) 根據鍵值對獲取值** Properties load (傳遞字節或字符 輸入流)* 將流中讀取的鍵值對,存到集合* 文件存儲鍵值對 Key = value* 修改/新增鍵值對的值 Properties setProperty(Key ,newValue)** Properties store (傳遞字節或字符 輸出流,String comments) **/
public class PropertiesDemo {public static void main(String[] args) throws Exception{method();}public static void method ()throws Exception{//創建字節輸入流FileInputStream file = new FileInputStream("/Users/Desktop/IOPrctice/Properties.txt");//創建Properties類Properties per = new Properties();//加載類中的鍵值對per.load(file);//關閉輸入流file.close();System.out.println(per);//修改對應鍵的值per.setProperty("Name","zhangsan");//創建字節輸入流FileOutputStream fos = new FileOutputStream("/Users/Desktop/IOPrctice/Properties.txt");//使用Properties 集合方法存儲per.store(fos,"123");//關閉流fos.close();}}
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎
總結
以上是生活随笔為你收集整理的Map 的Properties集合存储IO流对象的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 阿里MySQL读写一致_阿里面试题:如何
- 下一篇: (JAVA)reflect练习