如何读取带有自定义扩展名的文本框的文件

发布于 2024-11-28 11:38:05 字数 98 浏览 0 评论 0原文

有没有办法读取带有自定义扩展名的文本框文件?是否可以转换为某些受支持的格式? 我需要读取具有自定义扩展名的文件,例如 text.blahblahblah

Is there any way to read file with custom extension to textBox? Is there any convertation to some supported formats?
I need read file with custom extension, like text.blahblahblah.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

唔猫 2024-12-05 11:38:05

有什么方法可以读取带有自定义扩展名的文本框文件吗?

当然,只需将文件文本加载到 TextBox 即可,如下所示:

textBox1.Text = File.ReadAllText(@"Your input file path");

您可以让用户使用 OpenFileDialog 选择文件,并指定对话框过滤器中接受的格式。

如果您还想读取 rtf 文本,那么我认为您需要一个 RichTextBox 而不是 TextBox ,这样您就可以读取 rtf 文本可能使用 richTextBox1.Rtf 字符串。

Is there any way to read file with custom extension to textBox?

Sure, just load the file text to the TextBox like:

textBox1.Text = File.ReadAllText(@"Your input file path");

You can let the user choose the file using OpenFileDialog and specify a format accepted in the dialog filter.

If you want to also read rtf text then I think you need a RichTextBox instead of TextBox here so you can read rtf text probably using richTextBox1.Rtf string.

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