منظورت اینه که یه فایل رو اجرا کنی؟ :redface:
اگه فایلت EXE باشه اینجوری: ;)
import java.io.IOException;
public class Hadi {
public static void main(String[] args) throws IOException {
Runtime rt = Runtime.getRuntime();
Process p = rt.exec("e:\\a.exe");
}
}...