借助Elecard MPEG2 Decoder的Easy RealMedia Tools可以成功转MPEG为RMVB 首先请按照默认安装设置安装Easy RealMedia Tools。安装完毕以后,请到http://www.elecard.com/products/products-pc/consumer/mpeg2-decoder-plugin/ 下载Elecard MPEG2 Decoder and Streaming PlugIn for WMP,当前的最新版本是3.4,您可以免费使用21天。 之后安装这过高Elecard MPEG2 Decoder and Streaming PlugIn for WMP。 最后您就可以正常使用这个软件来压缩MPEG文件为RMVB软件了。
作者:孟宪会 出自:【孟宪会之精彩世界】 发布日期:2007年1月16日 11点41分9秒 http://dotnet.aspx.cc/article/4439a5ef-e2c8-4879-a714-ff8dd0099284/read.aspx
string a = "【孟宪会之精彩世界】";byte[] b = System.Text.Encoding.Default.GetBytes(a); //转成 Base64 形式的 System.Stringa = Convert.ToBase64String(b);Response.Write(a);
//转回到原来的 System.String。byte[] c = Convert.FromBase64String(a);
a = System.Text.Encoding.Default.GetString(c);Response.Write(a);