c# 文本框显示 MemoryStream 流 然后以字符串形式保存到数据库

 我来答
升哥驾到
2012-04-07 · TA获得超过248个赞
知道小有建树答主
回答量:272
采纳率:0%
帮助的人:161万
展开全部
textBox.text=memorystream.readtoend().tostring();
查询串= "insert into [tableName] ([指定字段名])values('"+textBox.text+"')";

以上是手敲的,自己输一下吧,不能直接复制的。
解忧解忧杂货铺
推荐于2016-11-12 · TA获得超过590个赞
知道小有建树答主
回答量:1536
采纳率:33%
帮助的人:696万
展开全部
using System;
  using System.IO;
  using System.Text;
  class MemStream
  {
  static void Main()
  {
  int count;
  byte[] byteArray;
  char[] charArray;
  UnicodeEncoding uniEncoding = new UnicodeEncoding();
  // Create the data to write to the stream.
  byte[] firstString = uniEncoding.GetBytes(
  "Invalid file path characters are: ");
  byte[] secondString = uniEncoding.GetBytes(
  Path.InvalidPathChars);
  using(MemoryStream memStream = new MemoryStream(100))
  {
  // Write the first string to the stream.
  memStream.Write(firstString, 0 , firstString.Length);
  // Write the second string to the stream, byte by byte.
  count = 0;
  while(count < secondString.Length)
  {
  memStream.WriteByte(secondString[count++]);
  }
  // Write the stream properties to the console.
  Console.WriteLine(
  "Capacity = {0}, Length = {1}, Position = {2}\n",
  memStream.Capacity.ToString(),
  memStream.Length.ToString(),
  memStream.Position.ToString());
  // Set the position to the beginning of the stream.
  memStream.Seek(0, SeekOrigin.Begin);
  // Read the first 20 bytes from the stream.
  byteArray = new byte[memStream.Length];
  count = memStream.Read(byteArray, 0, 20);
  // Read the remaining bytes, byte by byte.
  while(count < memStream.Length)
  {
  byteArray[count++] =
  Convert.ToByte(memStream.ReadByte());
  }
  // Decode the byte array into a char array
  // and write it to the console.
  charArray = new char[uniEncoding.GetCharCount(
  byteArray, 0, count)];
  uniEncoding.GetDecoder().GetChars(
  byteArray, 0, count, charArray, 0);
  Console.WriteLine(charArray);
  }
  }
  }
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tianshikuqi8
2012-04-01 · TA获得超过1150个赞
知道小有建树答主
回答量:591
采纳率:0%
帮助的人:333万
展开全部
是要代码吗?
还是求思路?这个很简单啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式