色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

ByteArrayInputStream能轉換成FileInputStream么

林國瑞2年前118瀏覽0評論

ByteArrayInputStream能轉換成FileInputStream么?

1、將File、fileInputStream 轉換為byte數組:File file = new File("file.txt");InputStream input = new FileInputStream(file);byte[] byt = new byte[input.available()];input.read(byt);

2、將byte數組轉換為InputStream:byte[] byt = new byte[1024];InputStream input = new ByteArrayInputStream(byt);

3、將byte數組轉換為File:File file = new File('');OutputStream output = new FileOutputStream(file);BufferedOutputStream bufferedOutput = new BufferedOutputStream(output);bufferedOutput.write(byt);

input存放數組php,ByteArrayInputStream能轉換成FileInputStream么