Answers for "java console class"

4

list process using port

sudo lsof -n -i :80 | grep LISTEN
Posted by: Guest on April-15-2021
7

find out which procses is using port linux

sudo lsof -i:<port_number>
Posted by: Guest on July-30-2020
3

find process using port

lsof -i :8080
Posted by: Guest on September-20-2021
0

console java

try(Scanner scan=new Scanner(System.in)){
	//read from console
	String textRead=scan.nextLine();
	//write to console
  	System.out.println(textRead);
}
Posted by: Guest on April-06-2021
0

console java

# comile Java class
javac YourClass.java
# run compiled Java class
java YourClass
# run Java class directly
java YourClass.java
# run JAR
java -jar YourJar.jar
Posted by: Guest on April-06-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language