Base64 Generating PDF files

Source: Internet
Author: User

My idea is to first put Base64 into MemoryStream and then save it with FileStream, but when the code is written well run to byte[] B = stream. GetBuffer (); Error in this sentence: Unable to access MemoryStream's internal buffer. Then I changed it to byte[] B = stream. ToArray (); The procedure is normal.

Post all my demos and share

 Public voidBase64stringtofile (stringStrbase64,stringstrURL) {           Try{strbase64= Strbase64. Replace (' ','+'); MemoryStream Stream=NewMemoryStream (convert.frombase64string (strbase64)); FileStream FS=NewFileStream (strURL, FileMode.OpenOrCreate, FileAccess.Write); byte[] B =Stream.               ToArray (); //byte[] B = stream. GetBuffer ();Fs. Write (b,0, b.length); Fs.           Close (); }           Catch(Exception e) {}}

Base64 Generating PDF files

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.