I have a java program that needs to execute a C program during its operation. I have used the following line of code in my program:
Process p = Runtime.getRuntime().exec("SRTPUT");
It compiles fine but when i run the program it returns to me this error:
16 bit MS-DOS Subsystem
C:\WINDOES\system32\ntvdm.exe
Error while setting up environment for this application. Choose 'Close' to terminate the application
what's the problem?
thanks