我尝试从我的程序中运行外部应用程序但是没有任何应用程序选择启动你能告诉我出了什么问题吗?
public class Wag {
public static void main(String[] args) throws IOException {
Runtime rt = Runtime.getRuntime() ;
Process p = rt.exec( "C:/Users/Remnat/Desktop/WeightTool/WeightTool/WeightTool.exe" );
}
}