You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
InputStream input = new FileInputStream(file);
BufferedReader b = new BufferedReader(new InputStreamReader(input));
String value = b.readLine();
if (value != null)
while (value != null) {
count++;
value = b.readLine();
}
b.close();
input.close();
The text was updated successfully, but these errors were encountered:
these code works
The text was updated successfully, but these errors were encountered: