IntellJ Idea遇到Errors occurred while compiling module的解决方法

问题

Information:java: Errors occurred while compiling module ''
Information:javac 7 was used to compile java sources
Information:2017/12/25 12:10 - Compilation completed with 100 errors and 0 warnings in 17s 916ms

解决问题

一、先看编译环境的JDk版本是否一致
1.先看Idea的菜单 File-Settings-Build,Execution,Deployment-Compliler-Java Complier的jdk版本是1.7
IntellJ Idea遇到Errors occurred while compiling module的解决方法_第1张图片
2.再看下菜单File-Project Structure下的Project和modules的编译环境是jdk1.7
IntellJ Idea遇到Errors occurred while compiling module的解决方法_第2张图片
二、查看编码方式是否为utf-8
IntellJ Idea遇到Errors occurred while compiling module的解决方法_第3张图片
发现修改编码方式后,重新Rebuild project就没问题了。

感言

之前就有同事给我抱怨Idea的错误提示不够明确,容易导致误解;今天也遇到这个问题,记录下。

你可能感兴趣的:(Idea)