Windowsu kapatan Java Uygulaması
Uygulamada exec içerisindeki bölümü değiştirerek, winodws konsol komutlarını kullanabilirsiniz.
package shutdown;
import java.io.*;
public class Main {
public static void main(String[] args) {
try {
Process p = Runtime.getRuntime().exec("shutdown -s");
BufferedReader in = new BufferedReader(
new InputStreamReader(p.getInputStream()));
} catch (IOException e) {
e.printStackTrace();
}
}
}
import java.io.*;
public class Main {
public static void main(String[] args) {
try {
Process p = Runtime.getRuntime().exec("shutdown -s");
BufferedReader in = new BufferedReader(
new InputStreamReader(p.getInputStream()));
} catch (IOException e) {
e.printStackTrace();
}
}
}
Yorumunuzu Ekleyin