如何检查文件内容是否为空

时间:2015-08-04 04:40:35

标签: java file hadoop mapreduce bufferedreader

我正在尝试检查文件内容是否为空。我有一个内容为空的源文件。 我尝试了不同的替代方案。但没有什么对我有用。

这是我的代码:

  Path in = new Path(source);
    /*
     * Check if source is empty
     */
    BufferedReader br = null;
    try {
        br = new BufferedReader(new InputStreamReader(fs.open(in)));
    } catch (IOException e) {
        e.printStackTrace();
    }
    try {
        if (br.readLine().length() == 0) {
            /*
             * Empty file
             */
            System.out.println("In empty");
            System.exit(0);

        }
        else{
            System.out.println("not empty");
        }
    } catch (IOException e) {
        e.printStackTrace();

    }

我尝试过使用 -

1. br.readLine().length() == 0
2. br.readLine() == null
3. br.readLine().isEmpty()

以上所有内容都是空的。我需要使用 -

BufferedReader br = null;
        try {
            br = new BufferedReader(new InputStreamReader(fs.open(in)));
        } catch (IOException e) {
            e.printStackTrace();
        }

而不是新的File()等。

如果我在某处出错,请提供建议。

修改

  

更清楚一点。如果我有一个只有空格的文件或   没有空格,我希望我的结果是空的。

3 个答案:

答案 0 :(得分:4)

您可以调用File.length()(其中返回此抽象路径名表示的文件的长度),并检查它不是0。像

这样的东西
File f = new File(source);
if (f.isFile()) {
    long size = f.length();
    if (size != 0) {

    }
}

忽略空格(也是

您可以使用Files.readAllLines(Path)

static boolean isEmptyFile(String source) {
    try {
        for (String line : Files.readAllLines(Paths.get(source))) {
            if (line != null && !line.trim().isEmpty()) {
                return false;
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    // Default to true.
    return true;
}

答案 1 :(得分:1)

InputStream is = new FileInputStream("myfile.txt");
if (is.read() == -1) {
    // The file is empty!
} else {
    // The file is NOT empty!
}

当然,您需要关闭is并抓住IOException

答案 2 :(得分:0)

您可以尝试这样的事情:

用于处理isEmptyFile检查的实用工具类

package com.stackoverflow.answers.mapreduce;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;

public class HDFSOperations {

    private HDFSOperations() {}

    public static boolean isEmptyFile(Configuration configuration, Path filePath)
            throws IOException {
        FileSystem fileSystem = FileSystem.get(configuration);
        if (hasNoLength(fileSystem, filePath))
            return false;
        return isEmptyFile(fileSystem, filePath);
    }

    public static boolean isEmptyFile(FileSystem fileSystem, Path filePath)
            throws IOException {
        BufferedReader bufferedReader = new BufferedReader(
                new InputStreamReader(fileSystem.open(filePath)));
        String line = bufferedReader.readLine();
        while (line != null) {
            if (isNotWhitespace(line))
                return false;
            line = bufferedReader.readLine();
        }
        return true;
    }

    public static boolean hasNoLength(FileSystem fileSystem, Path filePath)
            throws IOException {
        return fileSystem.getFileStatus(filePath).getLen() == 0;
    }

    public static boolean isWhitespace(String str) {
        if (str == null) {
            return false;
        }
        int length = str.length();
        for (int i = 0; i < length; i++) {
            if ((Character.isWhitespace(str.charAt(i)) == false)) {
                return false;
            }
        }
        return true;
    }

    public static boolean isNotWhitespace(String str) {
        return !isWhitespace(str);
    }

}

测试实用程序的类

package com.stackoverflow.answers.mapreduce;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;

public class HDFSOperationsTest {

    public static void main(String[] args) {
        String fileName = "D:/tmp/source/expected.txt";
        try {
            Configuration configuration = new Configuration();
            Path filePath = new Path(fileName);
            System.out.println("isEmptyFile: "
                    + HDFSOperations.isEmptyFile(configuration, filePath));
        } catch (IOException ioException) {
            ioException.printStackTrace();
        }
    }

}