First page Back Continue Last page Overview Graphics
Loading a WordCounter Object
public static void main(String[] args){
WordCounter wCount;
try{
- ObjectInputStream objIn=
- new ObjectInputStream(
- new FileInputStream(args[0]));
wCount= (WordCounter)objIn.readObject();
objIn.close();
}catch(IOException ioe){
//do something
}catch(ClassNotFoundException cnfe){
}
}