I'm trying to read the content of a text file which can contain umlauts and stuff like this. I already red the stuff about unicode in Erlang but I still can't figure out how to read the file properly. Here is my code for reading the file:
reader (File) ->
case io:get_line(File,'') of
eof -> [];
{error, Reason} -> Reason;
Line -> [Line] ++ reader(File)
end.
But in the end my result is: ü when reading an ü
How must I convert Line to get the expected result?