asp.net 將一個圖片以二進位值的形式存入Xml檔案中的執行個體代碼_實用技巧

來源:互聯網
上載者:User
複製代碼 代碼如下:

try
   {
    int readByte = 0;        //
    int bytesToRead = 100;       //資料緩衝區大小
    string fileName = "../../WriteXml.xml";   //要開啟的檔案
    //   this.textBox1.Text = string.Empty;           
    // 開啟圖片檔案,利用該圖片構造一個檔案流
    FileStream fs = new FileStream("../../001.jpg",FileMode.Open);
    // 使用檔案流構造一個二進位讀取器將基中繼資料讀作二進位值
    BinaryReader br = new BinaryReader(fs);
    XmlTextWriter xmlTxtWt = new XmlTextWriter(fileName,Encoding.UTF8);
    //輸出設定 代碼縮排
    xmlTxtWt.Formatting = Formatting.Indented;
    //   xmlTxtWt.Indentation = 4;
    //書寫聲明
    xmlTxtWt.WriteStartDocument();
    xmlTxtWt.WriteStartElement("picture","ContactDetails","http://www.jb51.net");//定義命名空間
    xmlTxtWt.WriteStartElement("image");            //定義節點
    xmlTxtWt.WriteAttributeString("imageName","002.jpg");        //添加圖片屬性
    byte[] base64buffer = new byte[bytesToRead];          //開闢緩衝區
    do
    {
     readByte = br.Read(base64buffer,0,bytesToRead);      //將資料讀入位元組數組
     xmlTxtWt.WriteBase64(base64buffer,0,readByte);       //將數組中二進位值編碼為Base64並寫出到XML檔案
    }while(bytesToRead <= readByte);
    xmlTxtWt.WriteEndElement();
    xmlTxtWt.WriteEndElement();
    xmlTxtWt.WriteEndDocument();
//    xmlTxtWt.Flush();
    xmlTxtWt.Close();
    MessageBox.Show("讀寫結束!");
    //   this.textBox1.Text = ReadXml(fileName);
   }
   catch(Exception ex)
   {
    MessageBox.Show(ex.ToString());
   }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.