Core JAVA

Write Once, Run Anywhere

  • Java Basic
Java - Overview
Java - Environmental Setup
First Step towards Java Programming
Importing Classes
Java - Basic Datatypes
Java - Variable Types
Java - Modifier types
Java - Basic Operators
Java - Loop Control
Java - Decision Making
Java - Numbers
Java - Characters
Java - Strings
Java - Arrays
Java - Date & Time
Java - Regular Expressions
Java - Methods
Java - Files and I/O
Java - Exceptions
  • Java Object Oriented
Java - Inheritance
Java - Overriding
Java - Polymorphism
Java - Abstraction
Java - Encapsulation
Java - Interfaces
Java - Packages
  • Java Advanced
Java - Data Structures
Java - Collections
Java - Serialization
Java - Networking
Java - Multithreading
Java - Applet Basics


      Strings which are widely used in Java programming, are a sequence of characters. In the Java programming language, strings are objects. The Java platform provides the String class to create and manipulate strings.

Example



String greeting = "Hello world!";

Whenever it encounters a string literal in your code, the compiler creates a String object with its value in this case, "Hello world!'.

As with any other object, you can create String objects by using the new keyword and a constructor. The String class has eleven constructors that allow you to provide the initial value of the string using different sources, such as an array of characters:

Example


Output


Note:The String class is immutable, so that once it is created a String object cannot be changed. If there is a necessity to make alot of modifications to Strings of characters then you should use String Buffer & String Builder Classes.

String Length:

Methods used to obtain information about an object are known as accessor methods. One accessor method that you can use with strings is the length() method, which returns the number of characters contained in the string object.

After the following two lines of code have been executed, len equals 17:


Output


Concatenating Strings

The String class includes a method for concatenating two strings:



string1.concat(string2);

This returns a new string that is string1 with string2 added to it at the end. You can also use the concat() method with string literals, as in:



"My name is ".concat("Zara");

Strings are more commonly concatenated with the + operator, as in:



"Hello," + " world" + "!"

which results in



"Hello, world!"

Example


Output


Creating Format Strings

You have printf() and format() methods to print output with formatted numbers. The String class has an equivalent class method, format(), that returns a String object rather than a PrintStream object. Using String's static format() method allows you to create a formatted string that you can reuse, as opposed to a one-time print statement. For example, instead of:




you can write:




Powered by Blog - Widget
Face Upward - Widget
SNMethods Description
1 char charAt(int index) Returns the character at the specified index.
2 int compareTo(Object o) Compares this String to another Object.
3 int compareTo(StringanotherString) Compares two strings lexicographically.
4 int compareToIgnoreCase(String str) Compares two strings lexicographically, ignoring case differences.
5 String concat(String str) Concatenates the specified string to the end of this string.
6 boolean contentEquals(StringBuffer sb) Returns true if and only if this String represents the same sequence of characters as the specified StringBuffer.
7 static String copyValueOf(char[ ] data) Returns a String that represents the character sequence in the array specified.
8 static String copyValueOf(char[ ] data, int offset, int count) Returns a String that represents the character sequence in the array specified.
9 boolean endsWith(String suffix) Tests if this string ends with the specified suffix.
10 boolean equals(Object anObject) Compares this string to the specified object.
11 boolean equalsIgnoreCase(String anotherString) Compares this String to another String, ignoring case considerations.
12 byte getBytes( ) Encodes this String into a sequence of bytes using the platform's default charset, storing the result into a new byte array.
13 byte[ ] getBytes (StringcharsetName) Encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array.
14 void getChars(int srcBegin, int srcEnd, char[ ] dst, int dstBegin) Copies characters from this string into the destination character array