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.
使用 Windows 窗体应用程序
我在本地驱动器上保存了一个 htm 文件。我需要编写该文件的内容并将其写入我的数据库字段。
Dim objstream As New StreamReader("C:\Users\Readme.htm") textBox1.Text = objstream.ReadLine()
似乎上面的代码仅适用于文本文件。你能帮我看看用什么来阅读 vb.net 中的 html 文件的内容吗?谢谢 !
改用这个:
textBox1.Text = File.ReadAllText("C:\Users\Readme.htm")
在这种情况下无需打开或关闭流。