-
Notifications
You must be signed in to change notification settings - Fork 0
/
File1.java
36 lines (30 loc) · 805 Bytes
/
File1.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
import java.io.*;
import java.util.Scanner;
public class file1 {
public static void main(String[] args)throws IOException
{
String fileName = "C:\\Users\\TCS\\eclipse-workspace\\Twest\\src\\one.txt";
String line = "";
Scanner scanner = new Scanner(new FileReader(fileName));
try
{
int counter = 0;
while ( scanner.hasNextLine() )
{
line = scanner.nextLine();
for( int i=0; i<line.length(); i++ )
{
if( line.charAt(i) == 'a' )
{
counter++;
}
}
System.out.println(counter);
}
}
finally
{
scanner.close();
}
}
}