Closed GoogleCodeExporter closed 8 years ago
Try this:
applet.append(""); // Append a blank string to fix Issue 73
applet.append64("QTU5MCwxNjAwLDIsMywxLDEsTiwialplYnJhI...");
This is because to save on resources, I don't initialize PrintRaw until it's
needed using the "getPrintRaw()" method.
public void append(String s) {
getPrintRaw().append(s);
}
public void append64(String s) {
printRaw.append(Base64.decode(base64)); // Should be getPrintRaw().append(Base64.decode(base64));
}
Should be fixed in the next version. Sorry for the inconvenience.
-Tres
Original comment by tres.fin...@gmail.com
on 27 Jun 2012 at 9:26
Thank you, quick fix works.
Original comment by remigius...@ersystem.pl
on 28 Jun 2012 at 1:40
Fixed in version 1.4.3. Download it here:
http://code.google.com/p/jzebra/downloads/list
-Tres
Original comment by tres.fin...@gmail.com
on 30 Jun 2012 at 2:39
Original issue reported on code.google.com by
remigius...@ersystem.pl
on 26 Jun 2012 at 11:27