Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我是 C# 开发人员的新手。我想将文本文件保存到数据库。我在 Youtube 上看了一些视频。他们使用 Memorystream 来保存图像:
MemoryStream ms = new MemoryStream(); pictureBox1.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
现在我尝试从文本框中保存文本?我可以有类似的方法吗?谢谢
尝试这个:
MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(myTextBox.Text))
是的你可以。
尝试这样的事情。
MemoryStream ms = new MemoryStream(); ms.Write(System.Text.Encoding.UTF8.GetBytes(textBox1.Text), 0, textBox1.Length);