CS Career Fair
Employers will be around the CS Office
from 10 a.m. - 4 p.m. today. Feel free to drop by.
In addition, there will be some company presentations:
- 10 a.m., Zoot, 347 EPS
- 11 a.m., RightNow Technologies, 108 EPS
- 1 p.m., Booz Allen Hamilton, 347 EPS
- 2 p.m., SRI, 347 EPS
- 3 p.m., Advanced Acoustic Concepts, 347 EPS
Streams
- Console: Scanner
- Input File: Scanner
- Output File: PrintWriter, FileWriter
- Remember to close files!
Scanner Class
- Scanner(File source)
- Scanner(InputStream source)
- boolean hasNext()
- boolean hasNextDouble()
- boolean hasNextInt()
- boolean hasNextLine()
- String next()
- double nextDouble()
- int nextInt()
- String nextLine()
StringTokenizer Class
- StringTokenizer(String str)
- boolean hasMoreTokens()
- String nextToken()
- int countTokens()
Lecture Code