Is there a more computationally-efficient way to write a simple constant string than this:
private void parseLabel(FileOutputStream asciiout) {
asciiout.write(new String("Label: ").getBytes());
}
Seems that the alternative would be to allocate a byte array, put the string in the byte array, and then print the byte array...thought there would be something more direct.
asciiout.write("Label: ".getBytes());