how to print whole string in java code example
Example 1: java how to print a string[]
String[] array = new String[] {"John", "Mary", "Bob"};
System.out.println(Arrays.toString(array)); // [John, Mary, Bob]
Example 2: 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");
}
}