Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Strings and File I and O - Introduction to Computer Science I | CS 110, Study notes of Computer Science

Material Type: Notes; Class: Intro to Computer Science I; Subject: Computer Science; University: University of San Francisco (CA); Term: Fall 2006;

Typology: Study notes

Pre 2010

Uploaded on 07/30/2009

koofers-user-emb
koofers-user-emb 🇺🇸

10 documents

1 / 11

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Strings and File I/O
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download Strings and File I and O - Introduction to Computer Science I | CS 110 and more Study notes Computer Science in PDF only on Docsity!

Strings and File I/O

Strings

  • 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 Scanner scan = new Scanner(new File(” myfile.txt")); String s; while(scan.hasNext()) {//acts like an iterator s = scan.nextLine(); }
  • Option 2: Buffered Reader BufferedReader in = new BufferedReader(new FileReader(”myfile.txt")); s = in.readLine(); //returns null when EOF reached while(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 { … }

try/catch

try { //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 }

Propagation

void divider() throws ArithmeticException {

int a = 5;

int b = 0;

int c = a/b;

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^ bytes

Exercises

  1. 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 “vampire”.