------------------字节流---------------------
字節(jié)流:
輸入和輸出:1.參照物都是java程序來(lái)慘遭
2.Input輸入,持久化上的數(shù)據(jù)----》內(nèi)存
3.Output輸出,內(nèi)存---》硬盤(pán)
字節(jié)輸出流:
OutputStream:
定義:流按照方向可以分為輸入和輸出流,字節(jié)流可以操作任何數(shù)據(jù),字符流只能操作純字符數(shù)據(jù)。
IO流父類:OutputStream和InputStream
IO流程序書(shū)寫(xiě)步驟:
1.先導(dǎo)包
2.進(jìn)行異常處理
3.釋放資源
方法:
1.void?close();
2.Write(byte[ ]? ?b);Write(byte[ ],int?off,int?len?);
代碼:
public class FileOutputStreamDemo {public static void main(String[] args) throws IOException {//步驟1創(chuàng)建流 子類對(duì)象 綁定數(shù)據(jù)目的FileOutputStream fos= new FileOutputStream("c:\\aaa.txt");//2 調(diào)用write() 方法 寫(xiě)一個(gè)字節(jié)fos.write(97);//2.1 寫(xiě)字節(jié)數(shù)組byte[] b={65,66,67,68};fos.write(b);// 2.2 寫(xiě)字節(jié)數(shù)組的一部分fos.write(b, 1, 2);//2.3寫(xiě)字符串 getBytes() 字符串轉(zhuǎn)字節(jié)fos.write("hello world".getBytes());// 3 close 關(guān)閉資源 fos.close();} }FileOutputStream(文件輸出流):
文件的續(xù)寫(xiě)和換行符號(hào):
/* \r\n換行 */ public static void main(String[] args) throws IOException {File file = new File("c:\\b.txt");FileOutputStream fos = new FileOutputStream(file,true);fos.write("hello\r\n".getBytes());fos.write("world".getBytes());fos.close(); }字節(jié)輸入流:
InputStream: abstract int? read();讀取下一個(gè)字節(jié),返回-1讀取文件結(jié)束。
方法:read(byte[ ]?b);close();
代碼;
public class FileInputStreamDemo {public static void main(String[] args) {try {FileInputStream fis = new FileInputStream("c:\\aaa.txt");int len =0;while((len=fis.read())!=-1){System.out.print((char)len);}} catch (IOException e) {// TODO Auto-generated catch block e.printStackTrace();}} }字節(jié)數(shù)組讀取:
public static void main(String[] args) {try {FileInputStream fis = new FileInputStream("c:\\aaa.txt");//創(chuàng)建字節(jié)數(shù)組byte[] b = new byte[1024];int len=0;while((len=fis.read(b))!=-1){//字節(jié)數(shù)組轉(zhuǎn)字符串System.out.println(new String(b,0,len));}} catch (Exception e) {// TODO Auto-generated catch block e.printStackTrace();}}?
轉(zhuǎn)載于:https://www.cnblogs.com/duguangming/p/10602588.html
總結(jié)
以上是生活随笔為你收集整理的------------------字节流---------------------的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 探索RequestBody报com.al
- 下一篇: 栈(stack)和堆(heap)