mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
IDEA-93289 (count usages; mixed case)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
|
||||
class C {
|
||||
void m(File file) throws IOException {
|
||||
<caret>FileInputStream fileInputStream = new FileInputStream(file);
|
||||
int read, len = -1;
|
||||
boolean empty = true;
|
||||
do {
|
||||
read = fileInputStream.read();
|
||||
char[] chars = Character.toChars(read);
|
||||
System.out.println(read + " = " + Arrays.toString(chars));
|
||||
++len;
|
||||
empty = false;
|
||||
}
|
||||
while (read != -1);
|
||||
System.out.println(len);
|
||||
System.out.println(empty);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
|
||||
class C {
|
||||
void m(File file) throws IOException {
|
||||
int len;
|
||||
boolean empty;
|
||||
try (FileInputStream fileInputStream = new FileInputStream(file)) {
|
||||
int read;
|
||||
len = -1;
|
||||
empty = true;
|
||||
do {
|
||||
read = fileInputStream.read();
|
||||
char[] chars = Character.toChars(read);
|
||||
System.out.println(read + " = " + Arrays.toString(chars));
|
||||
++len;
|
||||
empty = false;
|
||||
}
|
||||
while (read != -1);
|
||||
}
|
||||
System.out.println(len);
|
||||
System.out.println(empty);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user