java.lang
// Creating an instance of the String class
String myString = new String("Hello World!");// Getting the length of the string
int length = myString.length();// Concatenating two strings
String newString = "Hello" + " " + "World!";// Comparing two strings for equality
boolean isEqual = myString.equals("Hello World!");// Converting an integer to a string
String numberString = Integer.toString(123);// Parsing a string to an integer
int number = Integer.parseInt("123");