[VB.NET]将数据从一个文件传输到另一个文件

发布于 2024-09-14 03:15:34 字数 165 浏览 10 评论 0原文

基本上我想带走我的客户。 然后举例来说,在我的客户端中我有“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

非要怀念 2024-09-21 03:15:34

将 System.IO.File 与 StreamWriter 结合使用。

File.CreateFile() 帮助您创建文件。检查以下示例是否对您有帮助(这并不是为了解决您的确切期望,而是为您提供可用选项的想法)

Dim fs as new FileStream("YourFile.bin", FileMode.Create)
Dim writer as New BinaryWriter(fs)

For i as Integer = 0 To 10
  writer.Write(CInt(i))
Next

writer.Close()
fs.Close()

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)

Dim fs as new FileStream("YourFile.bin", FileMode.Create)
Dim writer as New BinaryWriter(fs)

For i as Integer = 0 To 10
  writer.Write(CInt(i))
Next

writer.Close()
fs.Close()

FileStream.CreateText() method helps you create a Text stream and you can use this to write your textbox content into file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文