Review

Warning: I wrote this notes in one night (and this morning), it may contains errors, typos, bad grammers, read at your own risk!
The notes may not cover everything! You have to read the book and my lecture notes.

JFrame

Layout

JPanel

JLabel, JButton, JTextField

ActionListener

ActionEvent

e.getSource()

e.getActionCommand()

Applet

Exception

Object

Type Wrapper class

IO

Input

Output

More :

File

StringTokenizer

Example 1
String s = "this is a string"
StringTokenizer st = new StringTokenizer(s);
while(st.hasMoreTokens()){
    System.out.println(st.nextToken());
}
The output is
this
is
a
string
Example 2
String s = "12  35";
StringTokenizer st = new StringTokenizer(s);
int sum = Integer.parseInt(st.nextToken()) + Integer.parseInt(st.nextToken());
Then sum is 12 + 35 = 47.

Vector/LinkedList

Math