Https://jingyan.baidu.com/article/2009576193ee38cb0721b416.html
Modify Workspace default encoding
- 1
Enter Eclipse, import a project engineering, if the project file encoding inconsistent with your tool code will cause garbled. Such as:
- 2
If you want to enable plug-in development applications to have better internationalization support, to maximize the support of Chinese output, it is best to make Java files using UTF-8 encoding.
Modifying the default encoding
On the menu navigation bar window-->preferences Open the Preferences dialog box, left navigation tree, navigate to General-->workspace
- 3
Windows 7 platform defaults to GBK, Simplified Chinese operating system Windows XP, Windows 2000 Simplified Chinese default encoding is Gb18030,linux platform default is UTF-8
Then the engineering code established in this workspace is GBK, and the Java file created in the project is also GBK.
Can see the default is the GBK encoding format, we modify to UTF-8 encoding format or you need the encoding format
Click Apply and click OK.
END
Modifying the encoding of a file
- 1
Sometimes we import project files, and do not import into our workspace, just a reference, this time if there is coding problem, we can modify the file encoding view.
Right-click on the Eclipse project file, select Properties, and in resource Select Modify encoding format
END
Modify the encoding of a file type
- 1
Sometimes we need some kind of file, such as: *.jsp, *.java, etc.
Navigation bar Window-->preferences
Open the Preferences dialog box, left navigation tree, navigate to Genera-->content Types
- 2
On the right, find the type of file you want to modify, and I'll take *.java for example.
In the default encoding below, enter Utf-8->update->ok in the input box
END
Modify the encoding of a single file (an externally imported project, when the Modify workspace is invalid, at which point the encoding of the individual file is UTF-8/GBK, valid)
- 1
In Package Explorer, right-click File--Properties, change the text file encoding format to UTF-8
Eclipse encoding Format (Chinese garbled)