KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル


https://grokonez.com/kotlin/kotlin-properties-read-write-properties-file-properties-xml-file
KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル
ポストでは、プロパティの読み書き方法を示します.プロパティ/Kotlin言語によるXMLファイル.
i . kotlin -からのプロパティの読み書き.プロパティーファイル
1 .書き込みプロパティ.プロパティーファイル
1.1 property ()メソッド
使用するjava.util.Properties.store() メソッド:

// 1.
fun store(out: OutputStream, comments: String): Unit

-> Writes this property list (key and element pairs) in this Properties table 
to the output stream in a format suitable for loading into a Properties table using the load(InputStream) method.

// 2.
fun store(writer: Writer, comments: String): Unit

-> Writes this property list (key and element pairs) in this Properties table 
to the output character stream in a format suitable for using the load(Reader) method.
1.2のkotlinプログラム--書くために特性.プロパティーファイル

package com.javasampleapproach.kotlin.properties

import java.io.FileOutputStream
import java.io.FileWriter
import java.io.IOException
import java.util.Properties

fun main(args: Array) {
    val properties = Properties()

    properties.put("db.username", "username")
    properties.put("db.password", "password")
    properties.put("db.driver", "org.postgresql.Driver")
    properties.put("db.url", "jdbc:postgresql://localhost/testdb")

    var propertiesFile = System.getProperty("user.dir") + "\\file.properties"
        
    /*
     *  Approach 1: 
     *  use -> 'java.util.Properties.store(out: OutputStream, comments: String)'
     */
    var fileOutputStream = FileOutputStream(propertiesFile)
    properties.store(fileOutputStream, "save to properties file")
    
    /*
     *  Approach 2: 
     *  use -> 'java.util.Properties.store(writer: Writer, comments: String)'
     */
    propertiesFile = System.getProperty("user.dir") + "\\file_1.properties"
    val fileWriter = FileWriter(propertiesFile)
    properties.store(fileWriter, "save to properties file")
}
->.properties 出力ファイル:
その他:
https://grokonez.com/kotlin/kotlin-properties-read-write-properties-file-properties-xml-file
KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル