I am trying to parse a CSV file coming from a Windows machine on a Linux machine using Apache Spark, but accentuated characters do not seem to be recognized...
Dataset<Row> df = spark
.read()
.format("csv")
.option("header", "true")
.option("inferSchema", "true")
.load("file.csv");