BugFix importCSV
parent
4caef75230
commit
7806821abc
|
@ -28,7 +28,6 @@ import kotlinx.serialization.json.put
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.FileWriter
|
import java.io.FileWriter
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import kotlinx.serialization.json.Json
|
|
||||||
import kotlinx.serialization.encodeToString
|
import kotlinx.serialization.encodeToString
|
||||||
import kotlinx.serialization.json.JsonObject
|
import kotlinx.serialization.json.JsonObject
|
||||||
|
|
||||||
|
@ -211,11 +210,11 @@ fun App() {
|
||||||
fun exportToCSV(jsonFilePath: String, csvFilePath: String) {
|
fun exportToCSV(jsonFilePath: String, csvFilePath: String) {
|
||||||
val glossary = readJsonFile(jsonFilePath)
|
val glossary = readJsonFile(jsonFilePath)
|
||||||
val csvContent = buildString {
|
val csvContent = buildString {
|
||||||
appendLine("nom,description,contextePrincipal,contexte2,lieA,synonyme,antonyme")
|
appendLine("Mot;Description;Contexte principal;Contexte 2;Lié à;Synonyme;Antonyme;")
|
||||||
glossary.forEach { entry ->
|
glossary.forEach { entry ->
|
||||||
appendLine(
|
appendLine(
|
||||||
"${entry["nom"]},${entry["description"]},${entry["contextePrincipal"]}," +
|
"${entry["nom"]};${entry["description"]};${entry["contextePrincipal"]};" +
|
||||||
"${entry["contexte2"]},${entry["lieA"]},${entry["synonyme"]},${entry["antonyme"]}"
|
"${entry["contexte2"]};${entry["lieA"]};${entry["synonyme"]};${entry["antonyme"]}"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -245,7 +244,10 @@ fun importCSV(cheminFichier: String) {
|
||||||
val dataLines = lines.drop(1)
|
val dataLines = lines.drop(1)
|
||||||
|
|
||||||
dataLines.forEach { line ->
|
dataLines.forEach { line ->
|
||||||
val values = line.split(";")
|
// Check if the line is not empty or blank
|
||||||
|
if (line.isNotBlank()) {
|
||||||
|
val values = line.replace("\r", "").replace("\n", "").split(";")
|
||||||
|
|
||||||
values.forEach { value ->
|
values.forEach { value ->
|
||||||
println(value)
|
println(value)
|
||||||
}
|
}
|
||||||
|
@ -260,7 +262,7 @@ fun importCSV(cheminFichier: String) {
|
||||||
antonyme = mot["Antonyme"]!!
|
antonyme = mot["Antonyme"]!!
|
||||||
)
|
)
|
||||||
|
|
||||||
if(mot["Antonyme"] == "\r") {
|
if (mot["Antonyme"] == "\r") {
|
||||||
mot["Antonyme"] = ""
|
mot["Antonyme"] = ""
|
||||||
}
|
}
|
||||||
if (mot["Mot"] == null || mot["Mot"] == "") {
|
if (mot["Mot"] == null || mot["Mot"] == "") {
|
||||||
|
@ -271,9 +273,11 @@ fun importCSV(cheminFichier: String) {
|
||||||
}
|
}
|
||||||
ajouterMotAuGlossaire(nouveauMot)
|
ajouterMotAuGlossaire(nouveauMot)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
fun verifierChampsRequis(mot: Map<String, String>): Boolean {
|
fun verifierChampsRequis(mot: Map<String, String>): Boolean {
|
||||||
//Vérifier que les headers sont égales aux champs requis
|
//Vérifier que les headers sont égales aux champs requis
|
||||||
val champsRequis = listOf(
|
val champsRequis = listOf(
|
||||||
|
|
Loading…
Reference in New Issue