KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル
2581 ワード
https://grokonez.com/kotlin/kotlin-properties-read-write-properties-file-properties-xml-file
KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル
ポストでは、プロパティの読み書き方法を示します.プロパティ/Kotlin言語によるXMLファイル.
i . kotlin -からのプロパティの読み書き.プロパティーファイル
1 .書き込みプロパティ.プロパティーファイル
1.1 property ()メソッド
使用する
その他:
https://grokonez.com/kotlin/kotlin-properties-read-write-properties-file-properties-xml-file
KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル
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ファイル
Reference
この問題について(KOTLINプロパティ-/からのプロパティを読み書き.プロパティ/XMLファイル), 我々は、より多くの情報をここで見つけました https://dev.to/loizenai/kotlin-properties-read-write-properties-from-to-properties-xml-file-828テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol