Introduction to Java_chapter9
Introduction to Java_chapter9
1 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Motivations
Often you encounter the problems that involve string
processing and file input and output. Suppose you need to
write a program to replace all occurrences of a word with
a new word in a file. How do you solve this problem? This
chapter introduces strings and text files, which will enable
you to solve this problem.
2 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Objectives
To use the String class to process fixed strings (§9.2).
To construct strings (§9.2.1).
To understand that strings are immutable and to create an interned string (§9.2.2).
To compare strings (§9.2.3).
To get string length and characters, and combine strings (§9.2.4).
To obtain substrings (§9.2.5).
To convert, replace, and split strings (§9.2.6).
To match, replace, and split strings by patterns (§9.2.7).
To search for a character or substring in a string (§9.2.8).
To convert between a string and an array (§9.2.9).
To convert characters and numbers into a string (§9.2.10).
To obtain a formatted string (§9.2.11).
To check whether a string is a palindrome (§9.3).
To convert hexadecimal numbers to decimal numbers (§9.4).
To use the Character class to process a single character (§9.5).
To use the StringBuilder and StringBuffer classes to process flexible strings (§9.6).
To distinguish among the String, StringBuilder, and StringBuffer classes (§9.2–9.6).
To learn how to pass arguments to the main method from the command line (§9.7).
3 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
The String Class
• Constructing a String:
– String message = "Welcome to Java“;
– String message = new String("Welcome to Java“);
– String s = new String();
• Obtaining String length and Retrieving Individual Characters in a
string
• String Concatenation (concat)
• Substrings (substring(index), substring(start, end))
• Comparisons (equals, compareTo)
• String Conversions
• Finding a Character or a Substring in a String
• Conversions between Strings and Arrays
• Converting Characters and Numeric Values to Strings
4 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Constructing Strings
String newString = new String(stringLiteral);
5 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Strings Are Immutable
A String object is immutable; its contents cannot be changed.
Does the following code change the contents of the string?
String s = "Java";
s = "HTML";
6 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Trace Code
String s = "Java";
s = "HTML";
7 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Interned Strings
Since strings are immutable and are frequently
used, to improve efficiency and save memory, the
JVM uses a unique instance for string literals with
the same character sequence. Such an instance is
called interned. For example, the following
statements:
8 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Examples
String s1 = "Welcome to Java"; s1
: String
s3
String s2 = new String("Welcome to Java"); Interned string object
for "Welcome to Java"
String s3 = "Welcome to Java";
9 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
String Comparisons
java.lang.String
+equals(s1: Object): boolean Returns true if this string is equal to string s1.
+equalsIgnoreCase(s1: String): Returns true if this string is equal to string s1 case-
boolean insensitive.
+compareTo(s1: String): int Returns an integer greater than 0, equal to 0, or less than 0
to indicate whether this string is greater than, equal to, or
less than s1.
+compareToIgnoreCase(s1: String): Same as compareTo except that the comparison is case-
int insensitive.
+regionMatches(toffset: int, s1: String, Returns true if the specified subregion of this string exactly
offset: int, len: int): boolean matches the specified subregion in string s1.
+regionMatches(ignoreCase: boolean, Same as the preceding method except that you can specify
toffset: int, s1: String, offset: int, whether the match is case-sensitive.
len: int): boolean
+startsWith(prefix: String): boolean Returns true if this string starts with the specified prefix.
+endsWith(suffix: String): boolean Returns true if this string ends with the specified suffix.
10 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
String Comparisons
• equals
String s
s1
1 = new String("Welcome“);
String s2
s2 = "welcome";
if (s1
(s1.equals(s
.equals(s2
2)){
// s1
s1 and s
s2
2 have the same contents
}
if (s1
(s1 == s
s22) {
// s1
s1 and s
s22 have the same reference
}
11 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
String Comparisons, cont.
• compareTo
compareTo(Object
(Object object
object))
String s
s1
1 = new String("Welcome“);
String s2
s2 = "welcome";
if (s1
(s1.compareTo(s
.compareTo(s2
2) > 0) {
// s1 is greater than s s2
2
}
else if (s1
(s1.compareTo(s
.compareTo(s22) == 0) {
// s1 and ss2
2 have the same contents
}
else
// s1 is less than ss2
2
12 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
String Length, Characters, and
Combining Strings
java.lang.String
+length(): int Returns the number of characters in this string.
+charAt(index: int): char Returns the character at the specified index from this string.
+concat(s1: String): String Returns a new string that concatenate this string with string s1.
string.
13 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Finding String Length
Finding string length using the length()
method:
message = "Welcome";
() (returns 7)
message.length()
message.length
14 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Retrieving Individual Characters
in a String
• Do not use message[
message[0
0]
• Use message.charAt
message.charAt(index)
(index)
• Index starts from 0
Indices 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
message W e l c o m e t o J a v a
15 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
String Concatenation
String s3
s3 = s
s11.concat(s
.concat(s22);
String s3
s3 = s1
s1 + s2
s2;
s1 + s2
s2 + s3
s3 + s4
s4 + s5
s5 same as
(((s1
(((s1.concat(s
.concat(s22)).concat
)).concat(s
(s3
3)).concat
)).concat(s
(s4
4)).concat
)).concat(s
(s5
5);
16 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Extracting Substrings
java.lang.String
+substring(beginIndex: int): Returns this string’s substring that begins with the character at
String the specified beginIndex and extends to the end of the string,
as shown in Figure 9.6.
+substring(beginIndex: int, Returns this string’s substring that begins at the specified
endIndex: int): String beginIndex and extends to the character at index endIndex –
1, as shown in Figure 9.6. Note that the character at endIndex
is not part of the substring.
17 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Extracting Substrings
You can extract a single character from a string using the
charAt method. You can also extract a substring from a
string using the substring method in the String class.
String s
s1
1 = "Welcome to Java";
String s2
s2 = s
s11.substring(
.substring(00, 11)
11) + "HTML";
Indices 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
message W e l c o m e t o J a v a
18 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Converting, Replacing, and Splitting
Strings
java.lang.String
+toLowerCase(): String Returns a new string with all characters converted to lowercase.
+toUpperCase(): String Returns a new string with all characters converted to uppercase.
+trim(): String Returns a new string with blank characters trimmed on both sides.
+replace(oldChar: char, Returns a new string that replaces all matching character in this
newChar: char): String string with the new character.
+replaceFirst(oldString: String, Returns a new string that replaces the first matching substring in
newString: String): String this string with the new substring.
+replaceAll(oldString: String, Returns a new string that replace all matching substrings in this
newString: String): String string with the new substring.
+split(delimiter: String): Returns an array of strings consisting of the substrings split by the
String[] delimiter.
19 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Examples
"Welcome".toLowerCase() returns a new string, welcome.
"Welcome".toUpperCase() returns a new string,
WELCOME.
" Welcome ".trim() returns a new string, Welcome.
"Welcome".replace('e', 'A') returns a new string, WAlcomA.
"Welcome".replaceFirst("e", "AB") returns a new string,
WABlcome.
"Welcome".replaceAll("e", "AB") returns a new string,
WABlcomAB.
"Welcome".replaceAll("el", "AB") returns a new string,
WABcome.
20 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Splitting a String
String[] tokens = "Java#HTML#Perl".split
"Java#HTML#Perl".split("#");
("#");
for (int
(int i = 0; i < tokens.length
tokens.length;
; i++)
System.out.print(tokens[
System.out.print (tokens[i
i] + " "); ");
displays
Java HTML Perl
21 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Matching, Replacing and Splitting by Patterns
• You can match, replace, or split a string by specifying a
pattern. This is an extremely useful and powerful feature,
commonly known as regular expression. A regular
expression (abbreviated regex) is a string that describes
a pattern for matching a set of strings. Regular expression
is complex to beginning students. For this reason, two
simple patterns are used in this section. Please refer to
Supplement III.F, “Regular Expressions,” for further studies.
"Java".matches
Java".matches("Java");
("Java");
"Java".equals
Java".equals("Java");
("Java");
"Java is fun".matches
fun".matches("Java.*");
("Java.*");
"Java is cool".matches
cool".matches("Java.*");
("Java.*");
22 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Matching, Replacing and Splitting by Patterns
"440
440--02
02--4534
4534".matches("
".matches("\\\d{
d{33}-\\d{
d{22}-\\d{
d{44}" )
23 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Matching, Replacing and Splitting by Patterns
The replaceAll, replaceFirst, and split methods can be used
with a regular expression. For example, the following
statement returns a new string that replaces $, +, or # in
"a+b$#c" by the string NNN.
String s = "a+b
"a+b$#
$#c".replaceAll
c".replaceAll("[$+#]",
("[$+#]", "NNN");
System.out.println(s);
System.out.println (s);
24 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Matching, Replacing and Splitting by Patterns
The following statement splits the string into an array of strings
delimited by some punctuation marks.
for (int
(int i = 0; i < tokens.length
tokens.length;; i++)
System.out.println(tokens[
System.out.println (tokens[ii]);
25 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Finding a Character or a Substring
in a String
java.lang.String
+indexOf(ch: char): int Returns the index of the first occurrence of ch in the string.
Returns -1 if not matched.
+indexOf(ch: char, fromIndex: Returns the index of the first occurrence of ch after fromIndex in
int): int the string. Returns -1 if not matched.
+indexOf(s: String): int Returns the index of the first occurrence of string s in this string.
Returns -1 if not matched.
+indexOf(s: String, fromIndex: Returns the index of the first occurrence of string s in this string
int): int after fromIndex. Returns -1 if not matched.
+lastIndexOf(ch: int): int Returns the index of the last occurrence of ch in the string.
Returns -1 if not matched.
+lastIndexOf(ch: int, Returns the index of the last occurrence of ch before fromIndex
fromIndex: int): int in this string. Returns -1 if not matched.
+lastIndexOf(s: String): int Returns the index of the last occurrence of string s. Returns -1 if
not matched.
+lastIndexOf(s: String, Returns the index of the last occurrence of string s before
fromIndex: int): int fromIndex. Returns -1 if not matched.
26 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Finding a Character or a
Substring in a String
"Welcome to Java".indexOf ('W') returns 0.
Java".indexOf('W')
"Welcome to Java".indexOf ('x') returns -1.
Java".indexOf('x')
"Welcome to Java".indexOf ('o', 5) returns 9.
Java".indexOf('o',
"Welcome to ("come") returns 3.
Java".indexOf("come")
Java".indexOf
"Welcome to Java".indexOf ("Java", 5) returns 11
Java".indexOf("Java", 11..
"Welcome to Java".indexOf ("java", 5) returns -1.
Java".indexOf("java",
"Welcome to Java".lastIndexOf ('a') returns 14
Java".lastIndexOf('a') 14..
27 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Convert Character and Numbers
to Strings
The String class provides several static valueOf
methods for converting a character, an array of
characters, and numeric values to strings. These
methods have the same name valueOf with
different argument types char, char[], double,
long, int, and float. For example, to convert a
double value to a string, use String.valueOf(5.44).
The return value is string consists of characters ‘5’,
‘.’, ‘4’, and ‘4’.
28 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Problem: Finding Palindromes
29 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Example to find Palindromes
1 import java.util.Scanner;
2
3 public class CheckPalindrome {
4 /** Main method */
5 public static void main(String[] args) {
6 // Create a Scanner
7 Scanner input = new Scanner(System.in);
8
9 // Prompt the user to enter a string
10 System.out.print("Enter a string: ");
11 String s = input.nextLine();
12
13 if (isPalindrome(s))
14 System.out.println(s + " is a palindrome");
15 else
16 System.out.println(s + " is not a palindrome");
17 }
30 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Example to find Palindromes, Cont.
18
19 /** Check if a string is a palindrome */
20 public static boolean isPalindrome(String s) {
21 // The index of the first character in the string
22 int low = 0;
23
24 // The index of the last character in the string
25 int high = s.length() - 1;
26
27 while (low < high) {
28 if (s.charAt(low) != s.charAt(high))
29 return false; // Not a palindrome
30
31 low++;
32 high--;
33 }
34
35 return true; // The string is a palindrome
36 }
37 }
31 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
The Character Class
java.lang.Character
32 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Examples
Character charObject = new Character('b');
33 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Problem: Counting Each Letter in
a String
This example gives a program that counts the
number of occurrence of each letter in a
string. Assume the letters are not case-
sensitive.
34 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Example of Counting Each Letter in a String
1 import java.util.Scanner;
2
3 public class CountEachLetter {
4 /** Main method */
5 public static void main(String[] args) {
6 // Create a Scanner
7 Scanner input = new Scanner(System.in);
8
9 // Prompt the user to enter a string
10 System.out.print("Enter a string: ");
11 String s = input.nextLine();
12
13 // Invoke the countLetters method to count each letter
14 int[] counts = countLetters(s.toLowerCase());
15
16 // Display results
17 for (int i = 0; i < counts.length; i++) {
18 if (counts[i] != 0)
19 System.out.println((char)('a' + i) + " appears " +
20 counts[i] + ((counts[i] == 1) ? " time" : " times"));
21 }
2235 } Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Example of Counting Each Letter in a String, Cont.
23
24 /** Count each letter in the string */
25 public static int[] countLetters(String s) {
26 int[] counts = new int[26];
27
28 for (int i = 0; i < s.length(); i++) {
29 if (Character.isLetter(s.charAt(i)))
30 counts[s.charAt(i) - 'a']++;
31 }
32
33 return counts;
34 }
35 }
36 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
StringBuilder and StringBuffer
The StringBuilder/StringBuffer class is
an alternative to the String class. In general, a
StringBuilder/StringBuffer can be used wherever
a string is used. StringBuilder/StringBuffer is more
flexible than String. You can add, insert, or
append new contents into a string buffer,
whereas the value of a String object is fixed once
the string is created.
37 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
StringBuilder Constructors
java.lang.StringBuilder
38 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Modifying Strings in the Builder
ja v a .la n g .S trin g B u ild e r
39 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Examples
stringBuilder.append("Java");
stringBuilder.insert(11, "HTML and ");
stringBuilder.delete(8, 11) changes the builder to Welcome
Java.
stringBuilder.deleteCharAt(8) changes the builder to
Welcome o Java.
stringBuilder.reverse() changes the builder to avaJ ot
emocleW.
stringBuilder.replace(11, 15, "HTML")
changes the builder to Welcome to HTML.
stringBuilder.setCharAt(0, 'w') sets the builder to welcome
to Java.
40 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
The toString, capacity, length,
setLength, and charAt Methods
java.lang.StringBuilder
41 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Problem: Checking Palindromes
Ignoring Non-alphanumeric Characters
42 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Example of Checking Palindromes Ignoring Non-
alphanumeric Characters
1 import java.util.Scanner;
2
3 public class PalindromeIgnoreNonAlphanumeric {
4 /** Main method */
5 public static void main(String[] args) {
6 // Create a Scanner
7 Scanner input = new Scanner(System.in);
8
9 // Prompt the user to enter a string
10 System.out.print("Enter a string: ");
11 String s = input.nextLine();
12
13 // Display result
14 System.out.println("Ignoring non-alphanumeric characters, \nis "
15 + s + " a palindrome? " + isPalindrome(s));
16 }
43 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
17
18 /** Return true if a string is a palindrome */
19 public static boolean isPalindrome(String s) {
20 // Create a new string by eliminating non-alphanumeric chars
21 String s1 = filter(s);
22
23 // Create a new string that is the reversal of s1
24 String s2 = reverse(s1);
25
26 // Compare if the reversal is the same as the original string
27 return s2.equals(s1);
28 }
44 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
29
30 /** Create a new string by eliminating non-alphanumeric chars */
31 public static String filter(String s) {
32 // Create a string builder
33 StringBuilder stringBuilder = new StringBuilder();
34
35 // Examine each char in the string to skip alphanumeric char
36 for (int i = 0; i < s.length(); i++) {
37 if (Character.isLetterOrDigit(s.charAt(i))) {
38 stringBuilder.append(s.charAt(i));
39 }
40 }
41
42 // Return a new filtered string
43 return stringBuilder.toString();
44 }
45
46 /** Create a new string by reversing a specified string */
47 public static String reverse(String s) {
48 StringBuilder stringBuilder = new StringBuilder(s);
49 stringBuilder.reverse(); // Invoke reverse in StringBuilder
50 return stringBuilder.toString();
51 }}
45 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Main Method Is Just a Regular Method
46 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Command-Line Parameters
class TestMain {
public static void main(String[] args
args)) {
...
}
}
47 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Processing
Command-Line Parameters
In the main method, get the arguments from
args[
args [0], args
args[[1], ..., args [n], which
args[n]
corresponds to arg
arg0 arg1, ..., argn in
0, arg1
the command line.
48 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Problem: Calculator
50 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
16
17 // Determine the operator
18 switch (tokens[1].charAt(0)) {
19 case '+': result = Integer.parseInt(tokens[0]) + Integer.parseInt(tokens[2]); break;
20 case '-': result = Integer.parseInt(tokens[0]) – Integer.parseInt(tokens[2]); break;
21 case '*': result = Integer.parseInt(tokens[0]) * Integer.parseInt(tokens[2]); break;
22 case '/': result = Integer.parseInt(tokens[0]) / Integer.parseInt(tokens[2]);
23 }
24
25 // Display result
26 System.out.println(tokens[0] + ' ' + tokens[1] + ' '
27 + tokens[2] + " = " + result);
28 }
29 }
51 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.
Regular Expression Syntax
Regular Expression Matches Example
52 Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All
rights reserved.