どちらのクラスも、プロパティ ファイルにキー/値の形式で格納されているキーと値のペアを読み取ることができ、ResourceBundle がプロパティ ファイルを読み取るときの操作は比較的簡単です。
このクラスは Hashtable を継承し、キーと値のペアをコレクションに格納します。入力ストリームに基づいて、キーと値のペアがプロパティ ファイルから読み取られます。load() メソッドが呼び出された後、入力ストリームは自動的に閉じられず、手動で閉じる必要があります。
/** * 基于输入流读取属性文件:Properties继承了Hashtable,底层将key/value键值对存储在集合中, * 通过put方法可以向集合中添加键值对或者修改key对应的value * * @throws IOException */@SuppressWarnings("rawtypes") @Testpublic void test01() throws IOException { FileInputStream fis = new FileInputStream("Files/test01.properties"); Properties props = new Properties(); props.load(fis);// 将文件的全部内容读取到内存中,输入流到达结尾fis.close();// 加载完毕,就不再使用输入流,程序未主动关闭,需要手动关闭/*byte[] buf = new byte[1024]; int length = fis.read(buf); System.out.println("content=" + new String(buf, 0, length));//抛出StringIndexOutOfBoundsException*/System.out.println("driver=" + props.getProperty("jdbc.driver")); System.out.println("url=" + props.getProperty("jdbc.url")); System.out.println("username=" + props.getProperty("jdbc.username")); System.out.println("password=" + props.getProperty("jdbc.password"));/** * Properties其他可能用到的方法 */props.put("serverTimezone", "UTC");// 底层通过hashtable.put(key,value)props.put("jdbc.password", "456"); FileOutputStream fos = new FileOutputStream("Files/test02.xml");// 将Hashtable中的数据写入xml文件中props.storeToXML(fos, "来自属性文件的数据库连接四要素"); System.out.println(); System.out.println("遍历属性文件"); System.out.println("hashtable中键值对数目=" + props.size()); Enumeration keys = props.propertyNames();while (keys.hasMoreElements()) { String key = (String) keys.nextElement(); System.out.println(key + "=" + props.getProperty(key)); } }
このクラスは、クラスに基づいてプロパティ ファイルを読み取ります。プロパティ ファイルをクラスとして扱うということは、完全修飾クラス名を使用してプロパティ ファイルをパッケージに配置する必要があることを意味しますプロパティ ファイルの非パスはプロパティ ファイルを参照します。
/** * 基于类读取属性文件:该方法将属性文件当作类来处理,属性文件放在包中,使用属性文件的全限定性而非路径来指代文件 */@Testpublic void test02() { ResourceBundle bundle = ResourceBundle.getBundle("com.javase.properties.test01"); System.out.println("获取指定key的值"); System.out.println("driver=" + bundle.getString("jdbc.driver")); System.out.println("url=" + bundle.getString("jdbc.url")); System.out.println("username=" + bundle.getString("jdbc.username")); System.out.println("password=" + bundle.getString("jdbc.password")); System.out.println("-----------------------------"); System.out.println("遍历属性文件"); Enumeration<String> keys = bundle.getKeys();while (keys.hasMoreElements()) { String key = keys.nextElement(); System.out.println(key + "=" + bundle.getString(key)); } }
通常、データベース接続の 4 つの要素はプロパティ ファイルに配置され、プログラムはプロパティ ファイルからパラメータを読み込みます。データベース接続要素が変更されますが、ソース コードを変更する必要はありません。プロパティ ファイルのコンテンツを XML ドキュメントにロードするメソッド:
構成ファイルのヘッダーでコンテキスト制約を構成します。
設定ファイルの内容を取得します: ${key}
#を先頭に配置して、プロパティファイルにコメントを追加します。
プロパティ ファイルは、中国語をサポートしていない ISO-8859-1 エンコーディングを使用しており、中国語の文字は表示のために Unicode エンコーディングに変換されます。
以上がプロパティと ResourceBundle の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。