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