SyntaxFix
Write A Post
Hire A Developer
Questions
Just loop over the elements in your array.
Ex:
for(int i=0; numOfElements > i; i++) { outputWriter.write(array[i]); } //finish up down here