mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
15 lines
380 B
Java
15 lines
380 B
Java
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
|
|
class C {
|
|
void m(File file) throws IOException {
|
|
<caret>FileInputStream fileInputStream = new FileInputStream(file);
|
|
String s = "initial value";//Non-NLS
|
|
s = s + fileInputStream.read();
|
|
s += "end";
|
|
int time = 0;
|
|
System.out.println(time);
|
|
}
|
|
}
|