I am working on a simple project in Eclipse in Scala-IDE. The project makes use of someone else's library (which comes in *.java source files, not in a jar). The library source files contain numerous comments in Japaneese. I cannot compile the Scala project since for every such file I get an error like this one:

IO error while decoding D:\path\FileName.java with windows-1252 Please try specifying another one using the -encoding option

Seems like I did not have this problem when the project was in Java. Now I am migrating to Scala and that is what I am gettnig.. I do not want to delete all these comments, is there any way to make the compiler handle them? I have tried all kinds of encoding fixes starting from Preferences->Resources->Text file encoding and ending with eclipse.ini file encoding parameters...

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

I have resolved the issue. The Scala compiler has a different set of options that likely does not subdue to the global Eclipse options. So by going to Preferences->Scala->Compiler and adding -Dfile.encoding=UTF-8 to the Additional command line parameters field I have fixed the error.

link|improve this answer
1  
This is a bug (or at least a feature request). You should report this on assembla.com/spaces/scala-ide/tickets. – Matthew Farwell Feb 7 at 15:46
I cannot add a ticket there.. even if I login with my google account, the "New Ticket" button does not appear. – noncom Feb 8 at 4:56
There seems to be a problem with the google login. Try registering under a different username – Matthew Farwell Feb 8 at 10:57
@MatthewFarwell: Nope, I have tried that and I have been waiting while they fix the problem, but still I cannot see the "New Ticket" button. Strange, really..) – noncom Apr 1 at 14:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.