[VB.NET]将数据从一个文件传输到另一个文件
基本上我想带走我的客户。 然后举例来说,在我的客户端中我有“A = 1” 然后是我的第二个文件,其中包含随机数据。 所以客户=我的客户 File = 我想要在最终结果中的文件
如何将“A = TextBox1.Text”从客户端注入到文件中。 我听说它被称为“文件结束”或类似的东西。 有什么帮助吗?
Basically I want to take My Client.
Then for example Lets say in my client I have "A = 1"
Then my 2nd file which has random data in it.
So Client= My Client
File = The File which I want in the end result
How could I Inject "A = TextBox1.Text" from Client to File.
I heard it's called "End Of File" or something like that.
Any help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 System.IO.File 与 StreamWriter 结合使用。
File.CreateFile() 帮助您创建文件。检查以下示例是否对您有帮助(这并不是为了解决您的确切期望,而是为您提供可用选项的想法)
FileStream.CreateText() 方法可帮助您创建文本流,您可以使用它将文本框内容写入文件。
Use System.IO.File in combination with StreamWriter.
File.CreateFile() helps you create files. Check if the following sample helps you (This is not written to solve your exact expectation, but gives you the idea of available options)
FileStream.CreateText() method helps you create a Text stream and you can use this to write your textbox content into file.