显示打开文件中的文本
我不知道如何解释这一点,所以我会举一个场景。
我想编写一个程序,将其设置为文件扩展名的默认程序。当程序打开时,它会输出程序中的所有内容。即 file.txt 包含单词 hello,当打开时,我的程序打开并显示单词 hello。
这个想法就像记事本。打开文本文件时,会显示内容。然而,我的将在 DOS 窗口中。
我怎样才能实现这个目标?
抱歉,如果这里还有类似的问题,说实话,我不太确定这叫什么,因此无法搜索。
编辑:我很抱歉。我运行的是 Windows 7
I am not sure how to explain this, so I will give a scenario.
I want to write a program, which will be set as the default program for a file extension. When the program opens, it will output everything in the program. i.e file.txt contains the word hello, and when opened, my program opens and displays the word hello.
The idea is like Notepad. When a text file is opened, the contents are displayed. However, mine will be in a DOS window.
How can I achieve this?
Sorry if there is another question like this somewhere on here, TBH I am not too sure what this is called and thus can't search.
EDIT: My apologies. I am running Windows 7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您“使用”程序打开文件(例如使用文件类型关联或将文件拖到 .exe 上),则数据文件的文件名将作为命令行参数传递给您的应用程序。
请参阅:
main() 的参数有什么用?
If you open a file "with" your program (for instance using file type associations or by dragging the file onto the .exe), then the filename of the data file is passed as the command-line parameter to your application.
See:
What are the arguments to main() for?
请参阅:
您将您的应用程序与文件扩展名相关联,您的应用程序将执行它必须执行的任何操作。
See:
You will associate your app with file extension and your app will do whatever it has to do.