中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

java _io_字節數組輸出流

發布時間:2020-07-31 08:43:05 來源:網絡 閱讀:240 作者:wx5d21d5e6e5ab1 欄目:編程語言

字節數組輸出流,無需添加目的地,因為數據會被自動輸入內存的緩沖區,需通過
.toByteArray()或.toString()拿到數據
因為需要使用子類ByteArrayOutputStream的新方法,所以不能寫父類OutputStream對象
ByteArrayOutputStream os=new ByteArrayOutputStream();

因為數據寫入了緩沖區,所以需要通過.toByteArray()和.toString()手動拿取

步驟:
創建目的地字節數組(用來存放從緩沖區拿來的數據): Byte[] last=null;
選擇流: ByteArrayOutputStream os;
編碼:字符串到字節
操作:os.write(byte[],0,byte,length)寫入
獲取數據:last=os.toByteArray();
System.out.println(new String(last,0,last.length)//或last.length可替換成os.size()
解碼

public class test{
    public static void main(String[]args)
    {
        //創建目的地
        byte[] last=null;
        //選擇流(新增方法)
        ByteArrayOutputStream os=null;  //不用OutputStream,是因為要用子類ByteArrayOutputStream的新增方法
        try {
        os =new ByteArrayOutputStream();

        String s="hello world";
        byte[] data=s.getBytes(); //編碼,字符串到字符數組

        os.write(data,0,data.length);
        os.flush();
        //獲取數據
        last=os.toByteArray();
        System.out.println(last.length);
        System.out.println(last.length+"---"+new String(last,0,last.length));//或者os.size()

    }catch(IOException e)
    {
        e.printStackTrace();
    }

}

}

向AI問一下細節

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

AI

晋城| 新郑市| 白沙| 石河子市| 邻水| 长泰县| 和平区| 五指山市| 弥渡县| 庆云县| 左贡县| 辉县市| 中西区| 松原市| 台江县| 万州区| 博乐市| 永城市| 汨罗市| 隆回县| 巴彦淖尔市| 临清市| 集安市| 漯河市| 鹤峰县| 科技| 清远市| 格尔木市| 揭东县| 呼伦贝尔市| 永嘉县| 玛纳斯县| 会理县| 醴陵市| 涿鹿县| 若尔盖县| 建湖县| 海南省| 克什克腾旗| 宁明县| 鄂伦春自治旗|