-
Notifications
You must be signed in to change notification settings - Fork 0
/
LineFinder.java
58 lines (48 loc) · 1.3 KB
/
LineFinder.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.javamultiplex.filehandling;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.LineNumberReader;
import java.util.Scanner;
public class LineFinder {
public static void main(String[] args) throws IOException {
Scanner input = null;
LineNumberReader lnr = null;
try {
input = new Scanner(System.in);
System.out.println("Enter file name with extension : ");
String fileName = input.nextLine();
if (isValidFileName(fileName)) {
File file = new File(fileName);
if (file.exists()) {
FileReader fr = new FileReader(file);
lnr = new LineNumberReader(fr);
int count = 0;
while (lnr.readLine() != null) {
count++;
}
System.out.println("There are " + count + " lines present in given file.");
} else {
System.out.println("File is not present in current directory.");
}
} else {
System.out.println("File name is not valid.");
}
} finally {
if (input != null) {
input.close();
}
if (lnr != null) {
lnr.close();
}
}
}
private static boolean isValidFileName(String fileName) {
String pattern = "^.+\\..+$";
boolean result = false;
if (fileName.matches(pattern)) {
result = true;
}
return result;
}
}