1. 程式人生 > 其它 >位元組流寫輸入的三種方式

位元組流寫輸入的三種方式

package com.czie.iot1913.lps01.IO.ioTest.OutputStream;

import java.io.FileOutputStream;
import java.io.IOException;

/**
* @author [email protected]
* @date 2022-03-22 21:25
* void write(byte[] b)
* 寫 b.length位元組從指定的位元組陣列來此檔案輸出流。
* void write(byte[] b, int off, int len)
* 寫 len位元組指定位元組陣列中的起始偏移 off此檔案輸出流。
* void write(int b)
* 將指定的位元組寫入該檔案輸出流中。
*/
public class FileOutPutStreamDemo02 {
public static void main(String[] args) throws IOException {
FileOutputStream fos01 = new FileOutputStream("myList\\fos.txt");
//new File(name)
// File file = new File("myList\\fos.txt");
// FileOutputStream fos2 = new FileOutputStream(file);

// FileOutputStream fos2 = new FileOutputStream(new File("myList\\fos.txt"));
// * void write(int b)
// * 將指定的位元組寫入該檔案輸出流中。
// fos01.write(97);
// fos01.write(98);
// fos01.write('a');
// fos01.write('b');

//* void write(byte[] b)
// * 寫 b.length位元組從指定的位元組陣列來此檔案輸出流。
// byte [] bytes={97,98,99,'a'};
// fos01.write(bytes);
//String s="劉品水大帥鍋";
//byte[] bytes = s.getBytes();
//fos01.write(bytes);

// * void write(byte[] b, int off, int len)
// * 寫 len位元組指定位元組陣列中的起始偏移 off此檔案輸出流。
String s1="abcdefghijk";
fos01.write(s1.getBytes(),1,5);

fos01.close();
//釋放資源!!!
}
}