标签:static sort 出错 cat void try ble 读取 ack
package sortchar;
import java.io.*;
import java.util.Arrays;
public class sortchar{
public static void main(String[] args) {
try {
FileInputStream fin=new FileInputStream("D:\\文件操作\\a.txt");
FileOutputStream fot=new FileOutputStream("D:\\文件操作\\b.txt");
int len= fin.available();
byte[] arr = new byte[len];
while ((len = fin.read(arr)) != -1) {
//读取1字节,字节流结束返回-1
System.out.println("排序");
Arrays.sort(arr);//对数组进行排序
System.out.println("写入");
fot.write(arr,0,len);//写入到输出流文件中
fot.flush();
fin.close();//关闭输入文件
fot.close();//关闭写入文件
}
}
catch (FileNotFoundException e) {
//指定文件不存在
e.printStackTrace();
/*当try语句中出现异常是时,会执行catch.printStackTrace()方法的意思是:在命令行打印异常信息在程序中出错的位置及原因。*/
}
catch (IOException e) {
e.printStackTrace();
}
}
}
标签:static sort 出错 cat void try ble 读取 ack
原文地址:https://www.cnblogs.com/wjsh/p/9260943.html