📄 readbytes.java
字号:
import java.io.*;class ReadBytes{ public static void main(String argv[]) { int b; int count=0; try { FileInputStream file = new FileInputStream("FilesView.class"); while((b=file.read())!=-1) { System.out.print(b+" "); count++; } file.close(); }catch(IOException e){} System.out.println("\nThis file have "+count+" bytes."); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -