31

我正在使用 Netbeans (Windows) 中的 Maven (jar) 项目,该项目使用 Maven Checkstyle 插件创建 Checkstyle 报告。

无论我做什么,我总是得到消息:File does not end with a newline对于 Java 类文件。

我可以在 Netbeans 或 Checkstyle 中做什么/配置以消除该消息?

使用的软件版本:

  • 操作系统SP3
  • Netbeans 6.7 RC1(也发生在 6.5 中)
  • Maven 2.0.9
  • Maven Checkstyle 插件 2.2
  • Java 1.6(更新 14)
4

6 回答 6

63

就我而言,这是该检查器配置不当造成的问题。默认情况下,它使用系统默认的行尾约定。我在 Windows 上工作,该项目使用的是 unix 风格的行尾。我不认为忽略警告是最好的策略,所以我所做的是:

<module name="Checker">
    <module name="NewlineAtEndOfFile">
        <property name="lineSeparator" value="lf" />
    </module>
</module>
于 2013-03-15T13:20:41.307 回答
13

Put a newline at the end of the file
or
configure CheckStyle not to care.

<module name="Checker">
    <!-- stuff deleted -->
    <module name="NewlineAtEndOfFile">
        <property name="severity" value="ignore" />
    </module>

You also have to tell the Maven Checkstyle plugin to use your checkstyle config file.

<plugin>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <configuration>
        <configLocation>${basedir}/yourCheckstyle.xml</configLocation>
    </configuration>
</plugin>
于 2009-06-18T20:25:23.170 回答
8

当文件保存为 UNIX 格式而不是 DOS 时,我遇到了这个问题。(或其他方式,如果你在 Unix 中工作)

为了解决这个问题,我使用一个程序将 UNIX 格式转换为 DOS 并以该格式保存文件。

在 Eclipse 中:文件 -> 将行分隔符转换为 -> Windows

于 2013-04-22T15:32:55.947 回答
4

有一种更简单的方法可以做到这一点。您可以在不覆盖 sun checkstyle 配置文件的情况下指定抑制文件:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <configuration>
        <suppressionsLocation>suppressions.xml</suppressionsLocation>
        <configLocation>config/sun_checks.xml</configLocation>
    </configuration>
</plugin>

你的suppresses.xml 在哪里:

<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
    "-//Puppy Crawl//DTD Suppressions 1.1//EN"
    "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">

<suppressions>
    <suppress checks="NewlineAtEndOfFile" files=".java" />
</suppressions>
于 2010-01-05T17:02:12.310 回答
0

..Window >> Preferences >> Checkstyle >> Select the configuration file >>

  1. 单击"Properties"按钮>>取消选中Protect Checkstyle Configuration file.
  2. 单击"Configure"按钮>>搜索"New Line At End Of File">>取消选中您在旁边看到的复选框New Line At End Of File
于 2013-03-13T19:55:41.857 回答
-3

//这里是蛮力解决方案:

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.util.ArrayList;

/**
 *
 * @author hMueller
 */

public class UnixToWindowsEncoding {

//rewrites all .java files in Windows encoding
//a[0] = parent directory
//loops through all subdirectories and fixes whatever .java file it finds
public static void main(String[] a){
    String startdir = a[0];
    fixDir(startdir);

}

private static void fixDir(String dirname){
    try{
        File f = new File(dirname);
        File[] list = f.listFiles();
        for(int i = 0; i < list.length; i++){
            if(list[i].isDirectory()){
                fixDir(list[i].getAbsolutePath());
            }else{
                if(list[i].getName().endsWith(".java")){
                    ArrayList<String> l = new ArrayList<String>();
                    FileReader fr = new FileReader(list[i]);
                    BufferedReader br = new BufferedReader(fr);
                    String line = "";
                    while( (line = br.readLine()) != null){
                        l.add(line);
                    }
                    br.close();
                    fr.close();
                    list[i].delete();
                    FileWriter fwr = new FileWriter(list[i]);
                    for(String s : l){
                        fwr.write(s + "\r\n");
                    }
                    fwr.flush();
                    fwr.close();
                }
            }
        }
    }catch(Exception ioe){
        ioe.printStackTrace();
    }
}

}
于 2015-11-12T21:24:32.820 回答