Myeclipse中的java和js文件乱码解决方法

js文件乱码解决方法:
可依次选择"window">>"preferences">>"general">>"content types" 

在右边的窗口中打开列表,选中"JavaScript",在下面的"default encoding"右边的输入框中输入"GBK"或"GB2312"再点"update"按钮,再打开JS文件就可以

如果没有提供选择向,在下面的“文件关联”中添加一个“*.js”,然后指定编码为"GBK"或"GB2312"就可以了
 
Java文件乱码解决方法:

一.将整个project设置编码UTF-8(UTF-8可以最大的支持国际化)

windows->Preferences->general->Workspace->Text file encoding->Other框中的Text file encoding改为UTF-8。 二.对java源文件编码设置为UTF-8.

windows->Preferences->general->Context Types->Text,选择Java Source File,在下面的Default encoding输入框中输入UTF-8,点Update,则设置Java文件编码为UTF-8。或者 File associations:  Add  文件名.java在下面的Default encoding输入框中输入gbk点Update 再点 文件名.java 右边 Remove 即可

三、如果上述设置后java源文件还是乱码,在windows->Preferences->general->Editors->File Associations

设置.java源文件的默认打开方式为Text Editor;如果没有.java,点击add,增加File Type 为.java的方式。

你可能感兴趣的:(Myeclipse中的java和js文件乱码解决方法)