FileDocCategorySizeDatePackage
ListOfNumbers.javaAPI DocExample1137Tue Dec 12 18:57:38 GMT 2000None

ListOfNumbers

public class ListOfNumbers extends Object

Fields Summary
private Vector
victor
private static final int
size
Constructors Summary
public ListOfNumbers()


       
        victor = new Vector(size);
        for (int i = 0; i < size; i++)
            victor.addElement(new Integer(i));
    
Methods Summary
public voidwriteList()

        PrintWriter out = null;

        try {
            System.out.println("Entering try statement");
            out = new PrintWriter(new FileWriter("OutFile.txt"));
        
            for (int i = 0; i < size; i++)
                out.println("Value at: " + i + " = " + victor.elementAt(i));
        } catch (ArrayIndexOutOfBoundsException e) {
            System.err.println("Caught ArrayIndexOutOfBoundsException: " +
				 e.getMessage());
        } catch (IOException e) {
            System.err.println("Caught IOException: " + e.getMessage());
        } finally {
            if (out != null) {
                System.out.println("Closing PrintWriter");
                out.close();
            } else {
                System.out.println("PrintWriter not open");
            }
        }