特定のフォルダー内のファイル数と、個々のファイル内のコード行をカウントするプログラムを Java で開発しようとしています。現在、フォルダーから単一のファイルのみを取得し、その特定のファイルのコード行をカウントするコードがあります。ここから先に進む方法を理解するのを手伝ってください。
私の現在のコード:
public class FileCountLine {
public static void main(String[] args) throws FileNotFoundException {
File file = new File("E:/WalgreensRewardsPosLogSupport.java");
Scanner scanner = new Scanner(file);
int count = 0;
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
count++;
}
System.out.println("Lines in the file: " + count);
}
}