C # base64 decoded binary output

Source: Internet
Author: User

Specific: You need to learn more about base64 encoding and decoding.

/// <Summary> /// base64 decoded Excel File Download /// </Summary> /// <Param name = "excelcontent"> </param> // <Param name = "strfilename"> </param> Public void bidexceldown (string excelcontent, string strfilename) {response. clear (); // clear irrelevant information response. buffer = true; // send response after completing the response. charset = "gb2312"; // set the character set of the output stream-Chinese response. contentencoding = system. text. encoding. getencoding ("UTF-8"); // sets the character set response of the output stream. appendheader ("content-disposition", "attachment; filename =" + httputility. urlencode (strfilename + ". xls ", system. text. encoding. utf8); // append header information response. contenttype = "application/octet-stream"; // The Excel type byte [] outputb = convert of the output stream. frombase64string (excelcontent); // decode
// If the encoding is a string, it does not need to be decoded in this way. // when outputting binary data, remember to include the following response. binarywrite (outputb); // outputs the binary stream response. end (); // stop output}

 

C # base64 decoded binary output

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.