📄 copybytedemo.java
字号:
import java.io.*;
public class CopyByteDemo
{
public CopyByteDemo() { }
public static void main(String args[]) throws IOException
{
FileInputStream f1;
FileOutputStream f2;
int temp;
f1=new FileInputStream("user.txt");
f2=new FileOutputStream("userBak.txt");
while((temp=f1.read()) !=-1)
f2.write(temp);
f1.close();
f1.close();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -