I am working on a simple project in Eclipse in Scala -IDE. The project uses a different library (which is supplied in the *.java
source files, and not in .jar
). The library source files contain numerous comments in Japaneese. I can not compile the Scala project, because for each such file I get an error similar to this:
I / O error while decoding D: \ path \ FileName.java with windows-1252. Try specifying another using -encoding
It seems that I did not have this problem when the project was in Java. Now I turn to Scala, and this is what I get. I don't want to delete all these comments, is there a way to get them to process them? I tried all kinds of coding fixes, starting with Preferences->Resources->Text file encoding
and ending with the encoding parameters of the eclipse.ini
file ...
source share