显示打开文件中的文本

发布于 2024-12-22 05:03:19 字数 275 浏览 1 评论 0原文

我不知道如何解释这一点,所以我会举一个场景。

我想编写一个程序,将其设置为文件扩展名的默认程序。当程序打开时,它会输出程序中的所有内容。即 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 技术交流群。

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

发布评论

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

评论(2

廻憶裏菂餘溫 2024-12-29 05:03:19

如果您“使用”程序打开文件(例如使用文件类型关联或将文件拖到 .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?

执妄 2024-12-29 05:03:19

我想编写一个程序,它将被设置为文件扩展名的默认程序。

请参阅:

您将您的应用程序与文件扩展名相关联,您的应用程序将执行它必须执行的任何操作。

I want to write a program, which will be set as the default program for a file extension.

See:

You will associate your app with file extension and your app will do whatever it has to do.

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