DOC PREVIEW
USF CS 110 - Strings and File I/O

This preview shows page 1-2-3-4 out of 11 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 11 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 11 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 11 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 11 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 11 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Strings and File I/OStrings•Java String objects are immutable•Common methods include:–boolean equalsIgnoreCase(String str)–String toLowerCase()–String substring(int offset, int endIndex)–String replace(char oldChar, char newChar)–int indexOf(String str)File Input (Text)•Option 1: Scanner/File–Scans input from given File–Input from file instead of System.in (keyboard)–Easy to scan ints, doubles, etc•Option 2: BufferedReader/FileReader–BufferedReader allows you to read a line at a time instead of a characterFile Input (Text)•Option 1: ScannerScanner scan = new Scanner(new File(” myfile.txt"));String s;while(scan.hasNext()) {//acts like an iterators = scan.nextLine();}•Option 2: Buffered ReaderBufferedReader in = new BufferedReader(new FileReader(”myfile.txt"));s = in.readLine(); //returns null when EOF reachedwhile(s != null) {s = in.readLine();}in.close(); //remember to CLOSE the file!Tips•Scanner must be imported from java.util •File and Readers must be imported from java.io•Must deal with IOException–Use try/catch for file operations or declare throws IOException in method header–public static void main(String[] args) throws IOException { … }Exceptions•“An exception is an object that defines an unusual or erroneous situation.”•Examples–Divide by 0–Array index out of bounds–File cannot be found–Follow a null referencetry/catchtry {//statements that may throw an exception} catch(Exception_Type name) {//what to do in case of exception //Exception_Type} catch(Another_Type another_name) {//what to do in case of exception Another_Type}Propagationvoid divider() throws ArithmeticException {int a = 5;int b = 0;int c = a/b;}File Output (Text)•FileWriter allows you to write to a file•PrintWriter provides interface of System.out•Remember to import correct packages and handle exceptionsPrintWriter out = new PrintWriter(new FileWriter(” myfile.txt"));out.println(“ String 1” );out.println(“ String 2” );out.close(); //remember to CLOSE the file!Misc…•Path names–Relative path name starts looking in current directory•Examples: “myfile.txt”, “mydirectory/myfile.txt” –Absolute path name starts from top-level directory•Examples “/home/srollins/cs112/myfile.txt” “C:\\srollins\\cs112\myfile.txt”•Binary Files–FileInputStream/FileOutputStream read/write bytesExercises1. Design and implement a program that prompts the user for a word and a file name and counts the number of times the given word appears in the file. Your program will keep a count of the number of lines in the input file and produce an output file that contains the line number and line for each line on which the word appears. For example, if your program was counting the number of occurrences of the word “stormy”, you might have the following entry in your output file to indicate that the word appears on line 5: “5: It was a dark and stormy night.” You can use the file dracula.txt to test your program -- search for the word


View Full Document

USF CS 110 - Strings and File I/O

Download Strings and File I/O
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Strings and File I/O and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Strings and File I/O 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?