Reputation: 820
I have problem with charset in my NetBeans on Windows when I open files, which were editting in NB on Linux by my coworkers.
I guess it should be unicode in both. What I should to do to resolve this problem? I can find proper option.
Upvotes: 1
Views: 1437
Reputation: 21
I use frensh and changed the netbeans encoding to Iso-8859-1 and it worked for me. tried UTF-8 before didn't do it my symptoms were as follows: - a website hosted on linux and developped by another dev - downloaded on my windows 8 , netbeans 8.0 beta or 8.1 - when opening a file for the first type it was saying "cannot option safely..." if chose Yes all my frensh special chars were messed up -Hicham
Upvotes: 2
Reputation: 13679
The most easy way to solve this is by a terminal command
$ sudo sh netbeans-8.0.2-linux.sh
Upvotes: 0
Reputation: 3500
We had the same problem with Eclipse because of mixed Windows and Linux developers. If you use Java you have 3 options:
Upvotes: 0
Reputation: 1
right-click on Project -> Properties -> Sources -> Encoding for maven project, put project.build.sourceEncoding in pom->project->properties
Upvotes: 0