I have a text file with three lines of code and need to take each line and split it by "," so I can take the pieces from each line and place them into a class. I'll have one class for each line.
This is what I have come up with sofar. I just think it's too much code and would like to find a simple way to do this.
The text file looks like this
character, stats, stats, stats
weapon, stats
armor, stats
my code for the first line looks like this
class CharacterFight(
var name : String,
var race : String,
var hitpoints :Int,
var strength : Int,
var agility : Int,
){
override fun toString(): String {
return """Character
Name: ${name}
Race: ${race}
Hitpoints :${hitpoints}
Strength: ${strength}
Agility: ${agility}
""".trimMargin()
}
}
var charactersStats = mutableListOf<CharacterFight>()
var charStats = mutableListOf<String>()
val fileName: String = "src/main/kotlin/gimli.txt"
var characterInfo = mutableListOf<String>()
var lines = File(fileName).readLines()
for (line in lines){
val pieces = line.split("\n")
characterInfo.add(line)
}
charStats.add(characterInfo[0])
for (stat in charStats){
var statpieces = stat.split(",")
var charpieces = CharacterFight(statpieces[0],statpieces[1],statpieces[2].toInt(),statpieces[3].toInt(),statpieces[4].toInt)
charactersStats.add(charpieces)
}```
To avoid boilerplate
toString()
code consider using data classes:Assuming that other two classes are
CSV deserializing could be done in the following manner (usage of destructuring declarations makes code more readable, but explicit
toInt()
convertion on a certain passing arguments still can't be avoided):If provided CSV format is not a hard requirment, I would recomend to use JSON instead:
Then with help of kotlinx.serialization library deserialization is fairly easy: