I came across an array declaration that looks like this:
byte [] byteArray = StringFormatter.padWithSpacesTo("", 1000).getBytes();
After that line the following lines are used:
putBytes(byteArray, name, 0);
putBytes(byteArray, addressLine1, 100);
What is this array declaration doing?
1000spaces in platform default encoding.