如何读取带有自定义扩展名的文本框的文件
有没有办法读取带有自定义扩展名的文本框文件?是否可以转换为某些受支持的格式? 我需要读取具有自定义扩展名的文件,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,只需将文件文本加载到
TextBox
即可,如下所示:您可以让用户使用
OpenFileDialog
选择文件,并指定对话框过滤器中接受的格式。如果您还想读取
rtf
文本,那么我认为您需要一个RichTextBox
而不是TextBox
,这样您就可以读取rtf 文本可能使用
richTextBox1.Rtf
字符串。Sure, just load the file text to the
TextBox
like: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 aRichTextBox
instead ofTextBox
here so you can readrtf
text probably usingrichTextBox1.Rtf
string.