[ERROR] /D:/IDEA文件/travel/src/main/java/cn/…

2019-09-17 10:27:17来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

[ERROR] /D:/IDEA文件/travel/src/main/java/cn/itcast/travel/util/MailUtils.java:[1,1] 非法字符: '\ufeff'

报错:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project travel: Compilation failure: Compilation failure: [ERROR] /D:/IDEA文件/travel/src/main/java/cn/itcast/travel/util/MailUtils.java:[1,1] 非法字符: '\ufeff' [ERROR] /D:/IDEA文件/travel/src/main/java/cn/itcast/travel/util/MailUtils.java:[1,10] 需要class, interface或enum [ERROR] -> Help 1 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. ERROR For more information about the errors and possible solutions, please read the following articles:

 

jdk 的pom.xml:
<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-compiler-plugin</artifactId>
 <configuration>
   <target>1.8</target>
   <source>1.8</source>
   <encoding>UTF-8</encoding>
 </configuration>
</plugin>

 

判断:

该文件 D:/IDEA文件/travel/src/main/java/cn/itcast/travel/util/MailUtils.java 的编码错误。

处理:

用notepad++打开MailUtils.java文件,查看编码发现:

 

 

 

 

编码为utf-8-bom。用notepad++修改编码为utf-8并保存:

 

 

问题解决。


原文链接:https://www.cnblogs.com/bloggary/p/11506684.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Spring整合Mybaits java.sql.SQLException: Access denied for u

下一篇:Java自学-接口与继承 重写