Check and delete of Utf-8 BOM under Linux (65279 Error resolution)

Source: Internet
Author: User

After the Java code is converted to UTF-8 encoding, the Eclipse compilation runs fine, but when you compile with maven, an illegal character 65278 error is thrown.

The reason is that after the conversion of the file header with BOM information, and Maven does not support, delete the file header BOM information can be.

You can bulk delete the BOM information in a file from the command line by using the following command:

' S/^\XEF\XBB\XBF ' *.java

Then, delete the backup file for the. bak suffix:

RM *.java.bak

You can now see whether or not the file contains BOM information, which can be queried using the following command:

Grep-r $ ' \XEF\XBB\XBF ' * | grep  . java

Additional:

To view the file encoding format, command:


Check and delete of Utf-8 BOM under Linux (65279 Error resolution)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.