Skip to content

Commit 0336878

Browse files
authored
Update io-basis.md
1 parent 506532c commit 0336878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/io/io-basis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Java IO 流的 40 多个类都是从如下 4 个抽象类基类中派生出来
4141
`FileInputStream` 代码示例:
4242

4343
```java
44-
try (InputStream fis = new FileInputStream("input.txt)) {
44+
try (InputStream fis = new FileInputStream("input.txt")) {
4545
System.out.println("Number of remaining bytes:"
4646
+ fis.available());
4747
int content;

0 commit comments

Comments
 (0)