Java IO實戰操作 二

2021-06-06 03:42:46 字數 1809 閱讀 6508

/**

* 向檔案中追加新內容

* @throws ioexception

*/public void newinsernum() throws ioexception

out.close();

}/**

* 獲取準確大小空間讀取檔案

* @throws ioexception

*/public void selectfile() throws ioexception

/** * 乙個乙個的讀

*/public void oneselectfile() throws ioexception

in.close();

system.out.println(new string(b));

}/**

* 不知道檔案有多大的情況下讀取檔案

*/public void notselectfile() throws ioexception

in.close();

system.out.println(new string(b));

}/**

* 字元流

* @throws ioexception

*/public void stringfile() throws ioexception

/** * 字元流

* 從檔案中讀出內容

*/public void outstringfile() throws ioexception

read.close();

system.out.println("內容為"+new string(ch,0,count));

}/**

* 檔案複製

* @throws ioexception

*/public void coutstringfile(stringargs) throws ioexception

file file1=new file(args[0]);

file file2=new file(args[1]);

if(!file1.exists())

inputstream input=new fileinputstream(file1);

outputstream output=new fileoutputstream(file2);

if((input!=null)&&(output!=null))

}

input.close();

output.close();

}/**

* 將位元組輸出流轉化為字元輸出流

* @throws ioexception

*/public void outputstream() throws ioexception

/** * 將位元組輸入流變為字元輸入流

* @throws ioexception

*/public void inputstream() throws ioexception

/*** 使用記憶體操作流將乙個大寫字母轉化為小寫字母

* @throws ioexception

*/public void bytearray() throws ioexception

string outstr=output.tostring();

input.close();

output.close();

system.out.println(outstr);

}

Java IO實戰操作 四

檔案壓縮 zipoutputstream類 throws ioexception public void zipoutputstreamfile throws ioexception input.close zipout.close 多個檔案的壓縮 throws ioexception public...

Java io的各種操作

位元組流 字元流 輸入流 inputstream reader 輸出流outputstream writer fileinputstream 讀取檔案位元組流 read 方法 fileoutputstream 寫入檔案位元組流 write 方法 filereader 讀取檔案字元流 要用buffer...

java io操作之位元組操作

抽象類為inputstream和outputstream inputstream為輸入流 outputsteam為輸出流 一般用抽象流定義物件,具體的實現流來實現物件 例如 inputstream in new fileinputstream new file url 常見的輸入,輸出流操作案例如下...