-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharacterCountFromFile.java
More file actions
49 lines (44 loc) · 1.68 KB
/
CharacterCountFromFile.java
File metadata and controls
49 lines (44 loc) · 1.68 KB
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
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class CharacterCountFromFile {
public static void main(String[] args) {
int newlines = -1, blankSpaces = 0, digits = 0;
char a;
File file = new File("E:/testtext.txt");
try {
Scanner scan = new Scanner(file);
/*
* while (scan.hasNextLine()) { newlines++; String line = scan.nextLine(); for
* (int i = 0; i < line.length(); i++) { a = line.charAt(i); if (a == ' ') {
* blankSpaces++; } else if (Character.isDigit(a)) { digits++; } if(a == '*'){
* break; } } }
*/
String fileContent = "";
while (scan.hasNextLine()) {
newlines++;
String line = scan.nextLine();
fileContent += line + "\n";
for (int i = 0; i < line.length(); i++) {
a = line.charAt(i);
if (a == ' ') {
blankSpaces++;
} else if (Character.isDigit(a)) {
digits++;
}
if(a == '*'){
break;
}
}
}
System.out.println("File Content:\n" + fileContent);
scan.close();
} catch (FileNotFoundException e) {
System.out.println("File not found: " + file);
}
System.out.println("------------------------------");
System.out.println("Newline: " + newlines);
System.out.println("Blank Space: " + blankSpaces);
System.out.println("Digit: " + digits);
}
}