We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506532c commit 0336878Copy full SHA for 0336878
docs/java/io/io-basis.md
@@ -41,7 +41,7 @@ Java IO 流的 40 多个类都是从如下 4 个抽象类基类中派生出来
41
`FileInputStream` 代码示例:
42
43
```java
44
-try (InputStream fis = new FileInputStream("input.txt)) {
+try (InputStream fis = new FileInputStream("input.txt")) {
45
System.out.println("Number of remaining bytes:"
46
+ fis.available());
47
int content;
0 commit comments