Deleting an array

I'm using 3 arrays in a program but i repeat the program once becuase i have to do 2 different websites so i don't want to have to write a whole nother set of code is there anyway i can just delete the whole array and use it again ?

[241 byte] By [mark07a] at [2007-11-27 11:27:50]
# 1

Simply reinstantiate it?existingStringArray = new String[];

BalusCa at 2007-7-29 16:18:26 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

> Simply reinstantiate it?existingStringArray =

> new String[];

yeah, just reuse the variable name

manuel.leiriaa at 2007-7-29 16:18:26 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...