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.
我有这个应用程序的想法,但它在很大程度上取决于 CMD,所以我想知道我是否可以从 Flutter 桌面应用程序中打开任何其他应用程序(例如 CMD)。
我知道在 java 中可以使用 exec() 来完成,但是在 dart/flutter 中是否有任何等价性?
是的,看看dart:io 中的 Process 类,它提供了一些从 Dart 程序中生成进程的方法。