ファイルを読み取ろうとしています。このファイルは、クラス ファイルと同じフォルダーにあります。以下は私のコードです:
class TestClass {
static void readFile(String fileName) {
// input stream
def text = TestClass.class.getClassLoader().getResourceAsStream(fileName).text;
def lines = text.split('\n')
print(lines);
}
public static void main(args) {
readFile('abc.txt');
}
}
しかし、私は java.lang.NullPointerException: Cannot get property 'text' on null object を取得します。