⽬录
ByteArrayOutputStream将数据写⼊本地⽂件那来了解⼀下ByteArrayOutPutStream吧在表格输出时
FileOutputStream的写⼊⽅法把读取的结果写⼊到ByteArrayOutputStream
ByteArrayOutputStream将数据写⼊本地⽂件
在⼀个项⽬中做⼀次性校验部分,需要将校验后数据写⼊表格后上传。巧的是,服务器Down了。作为⼀个新⼿实习⽣菜鸟,为了测试⾃⼰的代码和输出结果有没有⽑病,在⼤神同事的指点下选择了先将表格输出到本地
于是在百度疯狂搜索“输出流”、“输出⽂件到本地”、“⽂件流”等,经过多⽅搜集和探查以及加⼯,最后加上了⼀⼩段代码
//测试-将表格导⼊本地⽂件
FileOutputStream fileOutputStream = null; try {
fileOutputStream = new FileOutputStream(\"C:\\\\Users\\\\Administrator.DESKTOP-SFAEOA8\\\\Desktop\\\\consistencyCheckCommodityRuleTemplate.xlsx\"); fileOutputStream.write(byteArrayOutputStream.toByteArray()); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }
以下是上传Excel的部分代码。将最后的上传⽂件到dfs的⽅法注掉,以在准备好的⽂件 C:\\\\Users\\\\Administrator.DESKTOP-SFAEOA8\\\\Desktop\\\\consistencyCheckCommodityRuleTemplate.xlsx 中输出需要的结果
public void uploadExcel() {
//获取校验数据
List //创建模板信息 DataModel dataModel = setDataModel(); ......(此处省略⼀万字) //创建ExcelData ExcelData excelData = setExcelData(); ......(此处也省略⼀万字) //创建⽇志数据 ConsistencyCheckLog consistencyCheckLog = setConsistencyCheckLog(); ......(此处⼜省略⼀万字) //创建excel ByteArrayOutputStream byteArrayOutputStream = createExcel(dataModel, excelData); //测试-将表格导⼊本地⽂件 FileOutputStream fileOutputStream = null; try { fileOutputStream = new FileOutputStream(\"C:\\\\Users\\\\Administrator.DESKTOP-SFAEOA8\\\\Desktop\\\\consistencyCheckCommodityRuleTemplate.xlsx\"); fileOutputStream.write(byteArrayOutputStream.toByteArray()); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } //上传excel(⽆法上传 先注掉好了) //uploadFileToDfs(consistencyCheckLog, byteArrayOutputStream); } 这样就OK了,只添加了测试的部分,得到数据后也是放下了这颗菜⼼ 那来了解⼀下ByteArrayOutPutStream吧 ByteArrayOutputStream类是在创建它的实例时,程序内部创建⼀个byte型别数组的缓冲区,然后利ByteArrayOutputStream和ByteArrayInputStream的实例向数组中写⼊或读出byte型数据 字节数组输出流在内存中创建⼀个字节数组缓冲区,所有发送到输出流的数据保存在该字节数组缓冲区 成功创建字节数组输出流对象后,可以参见以下列表中的⽅法,对流进⾏写操作或其他操作序号123456 ⽅法描述 public void reset() 将此字节数组输出流的 count 字段重置为零,从⽽丢弃输出流中⽬前已累积的所有数据输出。public byte[] toByteArray() 创建⼀个新分配的字节数组。数组的⼤⼩和当前输出流的⼤⼩,内容是当前输出流的拷贝。public String toString() 将缓冲区的内容转换为字符串,根据平台的默认字符编码将字节转换成字符。public void write(int w) 将指定的字节写⼊此字节数组输出流。 public void write(byte []b, int off, int len) 将指定字节数组中从偏移量 off 开始的 len 个字节写⼊此字节数组输出流。public void writeTo(OutputStream outSt) 将此字节数组输出流的全部内容写⼊到指定的输出流参数中。 在表格输出时 Java输出流FileOutputStream也发挥了⾄关重要的作⽤ 使⽤FileOutputStream写⼊⽂件的过程同使⽤FileInputStream过程相同,都是先⽤File类打开本地⽂件,实例化输⼊输出流,然后调⽤流的读写⽅法读取或写⼊数据,最后关闭流。 FileOutputStream的写⼊⽅法 FileOutputStream类提供了多种⽂件写⼊⽅法,可以单独写⼀个字节到⽂件,也可以写⼀个byte数组到⽂件,也可以取byte数组的部分数据写⼊到⽂件。 把读取的结果写⼊到ByteArrayOutputStream FileOutputStream 可以把数据写到⽂件中去 ByteArrayOutputStream 可以把其他地⽅的读⼊的数据写到这⾥⾯,最后获取数据所有的 byte[],相当于可以把数据全部读到内存 中来. // 把读取的结果写⼊到ByteByteArrayOutputStream public static void main(String[] args) throws IOException { // TODO Auto-generated method stub String s = \"C:\\\\a.txt\"; int len = 0; FileInputStream stream = new FileInputStream(s); ByteArrayOutputStream stream2 = new ByteArrayOutputStream(); byte[] buffer = new byte[5]; //先读后写,循环读写 while ((len = stream.read(buffer)) != -1) { stream2.write(buffer, 0, len); } byte[] data = stream2.toByteArray(); System.out.println(new String(data)); } 以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。 因篇幅问题不能全部显示,请点此查看更多更全内容