Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在资源管理器中接收多个选定的文件,并通过命令行参数将它们发送到我的应用程序。如果它是一个文件,我可以在注册表中写:
java -jar myapp.jar "%1"
当然,在这种情况下,所有选定的文件都将在 app 的单独实例中打开。我可以在一个实例中接收多个文件吗?为了达到我的目标,我必须写什么而不是“%1”?