Hi Jose,
The problem is not in the importing, the StringTokenizer class needs a string like object in the constructor and you variable a is array of strings.
You need to change the type of your function or to set StringTokenizer st = new StringTokenizer(a[i]); being i a integer counter.
Hope this helps.
Regards