Cannot read csv file in Processing Android

Table table = loadTable(“Mappe.csv”);
table.addRow();
table.addColumn(“Clan”);
table.setString(0,“data/Mappe.csv”);
println(table.getString(0,“Clan”));

The file “Mappe.csv” is in my data folder.
I get the Error:
java.lang.RuntimeException: Error reading table on line 1

Try this:

Table table = loadTable(dataPath(“Mappe.csv”));

table.setString(0,dataPath(“Mappe.csv”));

It still doesnt work. I get the same Error