编译通过,运行电脑就一直报警,我立刻关机,再开机网也上不去了,系统好像废了
大神们帮我看看,哪里出错了?我去重装系统
- import java.io.*;
- class Test5
- {
- public static void main(String[] args) throws Exception
- {
- BufferedInputStream bis = new BufferedInputStream(new FileInputStream("小苹果.mp3"));
- BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("大苹果.mp3"));
- byte[] b = new byte[1024];
- int len = 0 ;
- while ((len=bis.read(b))!=-1)
- {
- System.out.print(new String(b,0,len));
- }
- }
- }
复制代码
|
|