Ok what I have currently is the blelow code in a for loop and this works fine it just doesn't format the text.
outString = outString + " " + i + " " + numArray[i] + "\n";
I am trying to format the text of i to right justify 6 spaces and numArray 16. i is an int and numArray is a double.
my attempst at this are...
outString = String.format(outString,%6d,%16f,i,numArray[i],"\n")
and
outString = outString+String.format(%6d,%16f,i,numArray[i])+"\n";
Any help or direction would be greatly appreciated.