run java from terminal
//Run this line to compile
javac programName.java
//Run this line to run
java programName
run java from terminal
//Run this line to compile
javac programName.java
//Run this line to run
java programName
how to run a java file in terminal
javac FirstJavaProgram.java
java in terminal
jshell
| Welcome to JShell -- Version 12.0.1
| For an introduction type: /help intro
jshell> int i=99;
i ==> 99
jshell> System.out.println(i);
99
how to make java run terminal commands
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ExecuteShellCommandRuntimeExec {
public static void main (String [] args) {
try {
Process process = Runtime.getRuntime().exec("ls -l");
StringBuilder output = new StringBuilder();
BufferedReader reader = new BufferedReader(new InputStreamReader (process.getInputStream()));
String line;
while((line = reader.readLine()) != null) {
output.append(line + "\n");
}
int exitVal = process.waitFor();
if (exitVal == 0) {
System.out.println("Success");
System.out.println(output);
System.exit(0);
} else {
System.out.println("Something abnormal has haapened :( ");
}
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us