Chapter 9 Strings and Text I/O

Slides:



Advertisements
Similar presentations
Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 9 Strings.
Advertisements

Chapter 7 Strings F To process strings using the String class, the StringBuffer class, and the StringTokenizer class. F To use the String class to process.
1 Strings and Text I/O. 2 Motivations Often you encounter the problems that involve string processing and file input and output. Suppose you need to write.
Chapter 7 Strings F Processing strings using the String class, the StringBuffer class, and the StringTokenizer class. F Use the String class to process.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 8 Strings.
Java Programming Strings Chapter 7.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 9 Strings and Text I/O.
©2004 Brooks/Cole Chapter 7 Strings and Characters.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 8 Strings and Text.
Programming 2 CS112- Lab 2 Java
String class  Construct a string  String str = new String(“welcome”);  Char[] charr = {‘G’, ‘o’, ‘o’, ‘d’};  String mes = new String(charr);  A full.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 9 Strings and Text.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 8 Strings and Text.
1 Chapter 3 Strings and Text I/O. 2 Objectives F To use the String class to process fixed strings. F To use the Character class to process a single character.
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved Chapter 7 Objects and Classes.
2. I/O Text Files CCSA225 - Advanced Java Programming Sarah Alodan
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Strings and Text I/O.
Chapter 7 Input/ and Exception Handling. The String Class A string is a sequence of characters. In many languages, strings are treated as an array of.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 7 Strings.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 9 Strings and Text.
String & Composition. Agenda This keyword. String class. String operations. Composition.
Chapter 7 Strings  Use the String class to process fixed strings.  Use the StringBuffer class to process flexible strings.  Use the StringTokenizer.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 8 Strings and Text.
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved Chapter 8 Strings 1.
Chapter 7 Strings F Processing strings using the String class, the StringBuffer class, and the StringTokenizer class. F Use the String class to process.
Strings Chapter 7 CSCI CSCI 1302 – Strings2 String Comparisons Compare string contents with the equals(String s) method not == String s0 = “ Java”;
Programming Fundamentals I (COSC- 1336), Lecture 6 (prepared after Chapter 9 of Liang’s 2011 textbook) Stefan Andrei 11/24/20151 COSC-1336, Lecture 6.
Strings Chapter 7 CSCI CSCI 1302 – Strings2 Outline Introduction The String class –Constructing a String –Immutable and Canonical Strings –String.
Jaeki Song JAVA Lecture 07 String. Jaeki Song JAVA Outline String class String comparisons String conversions StringBuffer class StringTokenizer class.
1 The String Class F Constructing a String: F Obtaining String length and Retrieving Individual Characters in a string F String Concatenation (concat)
String Definition A String is a set of characters that behaves as a single unit. The characters in a String include upper-case and lower-case letters,
Liang,Introduction to Java Programming,revised by Dai-kaiyu 1 Chapter 7 Strings Some people hear their own inner voices with great clearness, they live.
CHAPTER 8 File Input Output Part 1: String. The String Class  Constructing a String: String message = "Welcome to Java“; String message = new String("Welcome.
1 Chapter 9 Strings and Text I/O. 2 Objectives F To use the String class to process fixed strings. F To use the Character class to process a single character.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 9 Strings and Text.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 8 Strings.
COP3502 Programming Fundamentals for CIS Majors 1 Instructor: Parisa Rashidi.
Java String 1. String String is basically an object that represents sequence of char values. An array of characters works same as java string. For example:
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Fall 2013 Chapter 9 Strings.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved File I/O in java chapter.
Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All rights reserved. 1 Chapter 10 Thinking in Objects.
Strings A string is a sequence of characters that is treated as a single value. Strings are objects. We have been using strings all along. For example,
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 7 Strings Chapter.
Chapter 4 Mathematical Functions, Characters, and Strings 1.
2 Arrays Array is a data structure that represents a collection of the same type of data. A "fixed length list".
Strings Chapter 7 CSCI CSCI 1302 – Strings2 Outline Introduction The String class –Constructing a String –Immutable and Canonical Strings –String.
John Hurley Cal State LA
Chapter 9 Strings and Text I/O
String and StringBuffer classes
Chapter 4 Mathematical Functions, Characters, and Strings
Strings, StringBuilder, and Character
Strings.
Programming in Java Text Books :
Chapter 10 Thinking in Objects
Chapter 8 Strings and Text I/O
Chapter 7: Strings and Characters
MSIS 655 Advanced Business Applications Programming
Chapter 9 Strings and Text I/O
Text I/O.
Unit-2 Objects and Classes
Chapter 9 Strings.
Lecture 07 String Jaeki Song.
Chapter 9 Strings and Text I/O
Chapter 10 Thinking in Objects Part 2
Chapter 12 Exception Handling and Text IO Part 2
Chapter 7 Strings Processing strings using the String class, the StringBuffer class, and the StringTokenizer class. Use the String class to process fixed.
Lecture 4 CS2012.
Unit-2 Objects and Classes
Presentation transcript:

Chapter 9 Strings and Text I/O

Objectives To use the String class to process fixed strings. To use the Character class to process a single character. To discover file properties, delete and rename files using the File class . To write data to a file using the PrintWriter class. To read data from a file using the Scanner class. (Optional GUI) To add components to a frame.

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

Constructing Strings String newString = new String(stringLiteral);   String message = new String("Welcome to Java"); A String variable holds a reference to a String object that stores a string value. Since strings are used frequently, Java provides a shorthand initializer for creating a string: String message = "Welcome to Java";

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";

animation Trace Code String s = "Java"; s = "HTML";

animation Trace Code String s = "Java"; s = "HTML";

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. You can also use a String object’s intern method to return an interned string. For example, the following statements:

Examples A new object is created if you use the new operator. display If you use the string initializer, no new object is created if the interned object is already created. display   s1 == s is false s2 == s is true s == s3 is true

animation Trace Code

Trace Code

Trace Code

Trace Code

Finding String Length Finding string length using the length() method: message = "Welcome"; message.length() (returns 7)

Retrieving Individual Characters in a String Do not use message[0] Use message.charAt(index) Index starts from 0

String Concatenation String s3 = s1 + s2; String s3 = s1.concat(s2); String s3 = s1 + s2; s1 + s2 + s3 + s4 + s5 same as (((s1.concat(s2)).concat(s3)).concat(s4)).concat(s5);

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 s1 = "Welcome to Java"; String s2 = s1.substring(0, 11) + "HTML";

String Comparisons equals String s1 = new String("Welcome“); String s2 = "welcome"; if (s1.equals(s2)){ // s1 and s2 have the same contents } if (s1 == s2) { // s1 and s2 have the same reference

String Comparisons, cont. compareTo(Object object) String s1 = new String("Welcome“); String s2 = "welcome"; if (s1.compareTo(s2) > 0) { // s1 is greater than s2 } else if (s1.compareTo(s2) == 0) { // s1 and s2 have the same contents else // s1 is less than s2

String Conversions The contents of a string cannot be changed once the string is created. But you can convert a string to a new string using the following methods: toLowerCase E.g. “Welcome”.toLowerCase() returns a new string, welcome. toUpperCase E.g. “Welcome”.toUpperCase() returns a new string, WELCOME. trim Returns a new string by eliminating blank characters from both ends of the string. replace(oldChar, newChar) Use to replace all occurrences of a character in the string with a new character.

Finding a Character or a Substring in a String "Welcome to Java".indexOf('W') returns 0. "Welcome to Java".indexOf('x') returns -1. Return the index of the first character in the string that matches the specified character. "Welcome to Java".indexOf('o', 5) returns 9. Returns the index of the first character in the starting from the specified index that matches the specified character. "Welcome to Java".indexOf("come") returns 3. Returns the index of the first character of the substring in the string that matches the specified string.

"Welcome to Java".indexOf("Java", 5) returns 11. - Returns the index of the first character of the substring in the string starting from the specified index that matches the specified string. "Welcome to Java".lastIndexOf('a') returns 14.

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’.

Convert String to Array char[] chars = “Java”.toCharArray(); chars[0] is ‘J’, chars[1] is ‘a’, chars[2] is ‘v’ and chars[3] is ‘a’. getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) char[] dst = {‘J’,’a’,’v’,’a’,’1’,’3’,’0’,’1’}; “CS3720”.getChars(2, 6, dst, 4); dst becomes {‘J’,’a’,’v’,’a’,’3’,’7’,’2’,’0’}

String str = new String(new char[]{‘J’,’a’, ‘v’, ‘a’}); Or String str = String.valueOf(new char[] {‘J’,’a’, ‘v’, ‘a’}); String.valueOf(5.44) converts 5.44 to String, ‘5’, ‘.’,’4’ and’4’. Double.parseDouble(str) or Integer.parseInt(str) to convert string double value or an int value.

Example: Finding Palindromes Objective: Checking whether a string is a palindrome: a string that reads the same forward and backward. Run CheckPalindrome

import javax.swing.JOptionPane; public class CheckPalindrome { public static void main(String[] args) { String s = JOptionPane.showInputDialog(“Enter a string:”); String output = “”; if (isPalindrome(s)) output = s + “ is a palindrome”; else output = s + “ is not a palindrome”; JOptionPane.showMessageDialog(null, output); } public static boolean isPalindrome(String s) { int low = 0; int high = s.length()-1; while (low < high) { if (s.charAt(low) != s.charAt(high)) return false; low++; high--; return true; }}

The Character Class

Examples Character charObject = new Character('b'); charObject.compareTo(new Character('a')) returns 1 charObject.compareTo(new Character('b')) returns 0 charObject.compareTo(new Character('c')) returns -1 charObject.compareTo(new Character('d') returns –2 charObject.equals(new Character('b')) returns true charObject.equals(new Character('d')) returns false

Example: 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. Run CountEachLetter

The File Class The File class is intended to provide an abstraction that deals with most of the machine-dependent complexities of files and path names in a machine-independent fashion. The filename is a string. The File class is a wrapper class for the file name and its directory path.

Obtaining file properties and manipulating file

Example: Using the File Class Objective: Write a program that demonstrates how to create files in a platform-independent way and use the methods in the File class to obtain their properties. Figure 16.1 shows a sample run of the program on Windows, and Figure 16.2 a sample run on Unix. TestFileClass Run

Text I/O A File object encapsulates the properties of a file or a path, but does not contain the methods for reading/writing data from/to a file. In order to perform I/O, you need to create objects using appropriate Java I/O classes. The objects contain the methods for reading/writing data from/to a file. This section introduces how to read/write strings and numeric values from/to a text file using the Scanner and PrintWriter classes.

Writing Data Using PrintWriter WriteData Run

Reading Data Using Scanner ReadData Run

Example: Replacing Text Write a class named ReplaceText that replaces a string in a text file with a new string. The filename and strings are passed as command-line arguments as follows: java ReplaceText sourceFile targetFile oldString newString For example, invoking java ReplaceText FormatString.java t.txt StringBuilder StringBuffer replaces all the occurrences of StringBuilder by StringBuffer in FormatString.java and saves the new file in t.txt. ReplaceText Run