?? mytype3.java
字號:
import java.io.*;
public class MyType3
{
public static void main(String argv[])
{
try {
FileInputStream fin = new FileInputStream(argv[0]);
byte buf[] = new byte[64];
int i = fin.read(buf);
while (i == 64)
{
System.out.print(new String(buf));
i = fin.read(buf);
}
System.out.print(new String(buf, 0, i));
fin.close();
}
catch (IOException e)
{
System.err.println(e);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -