91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用java中OutStream()向文件中寫入內容

發布時間:2021-06-28 14:58:16 來源:億速云 閱讀:310 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何使用java中OutStream()向文件中寫入內容,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

使用java中OutStream()向文件中寫入內容

package Stream;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;


public class OutStreamDemo01 {
	public static void main(String[] args) {
		//定義文件路徑,沒有該文件會自動創建,如果路徑有文件夾,一定要有,不會自動創建文件夾
		String filename = "e:"+File.separator+"a"+File.separator+"b.txt";
		File file = new File(filename);
		String str = "這些都將寫入文件中";
		byte[] b = str.getBytes();	//將字符串轉換成字節數
		OutputStream out = null;
		try {
			out = new FileOutputStream(file);	//實例化OutpurStream
		}catch(FileNotFoundException e){
			e.printStackTrace();
		}
		
		//寫入
		try {
			out.write(b);		//寫入
			out.close();		//關閉
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

使用InputStream()讀取文件中的內容:

package Stream;
import java.io.*;;
public class InputStreamDemo01 {
	public static void main(String[] args) {
		File file = new File("e:"+File.separator+"a"+File.separator+"b.txt");
		byte[] b = new byte[(int)file.length()];//定義byte字節的長度
		InputStream in = null;
		int len = 0;
		try {		//處理異常
			in = new FileInputStream(file);		//實例化FileInputstream類
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();		//輸出異常
		}
		try {
			len = in.read(b);		//讀取指定文件的內容
			in.close();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		System.out.println(new String(b,0,len));//將字節數組轉化成字符串輸出指定文件從0開始到len字節結束
	}
}

關于“如何使用java中OutStream()向文件中寫入內容”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丰都县| 武定县| 慈溪市| 闸北区| 新巴尔虎左旗| 额尔古纳市| 平南县| 佳木斯市| 两当县| 孝昌县| 墨竹工卡县| 咸阳市| 涡阳县| 岐山县| 正定县| 长岭县| 新龙县| 手游| 潞城市| 五大连池市| 马尔康县| 裕民县| 仁怀市| 洪江市| 南城县| 张家港市| 洪湖市| 怀远县| 青海省| 曲松县| 山东省| 弥渡县| 奉节县| 成安县| 钟山县| 凌海市| 田林县| 山丹县| 临清市| 武隆县| 贞丰县|