java print string[] code example

Example 1: print in java

//print and create new line after
System.out.println("text");
System.out.println(String);
//You can use any variable type, not just strings, although
//they are the most common

//Print without creating a new line
System.out.print("text");
System.out.print(String);

Example 2: java how to print an array

import java.util.Arrays;

class Scratch{
    public static void main(String[] args){
        int[] arr = new int[3];
        System.out.println( Arrays.toString( arr ));
      	//prints [0, 0, 0]
    }
}

Example 3: java print array

System.out.println(Arrays.toString(arr));

Example 4: java how to print a string[]

String[] array = new String[] {"John", "Mary", "Bob"};
System.out.println(Arrays.toString(array)); // [John, Mary, Bob]

Example 5: print a string java

public class hello {

    public static void main(String[] args) {
	String hello = "Hello";
      System.out.println(hello);

    }
}

or 

public class hello {

    public static void main(String[] args) {
	
	System.out.println("Hello");
    }
}

Example 6: java print statement

System.out.println("print your String");