我有一个 Android 应用程序,我正在尝试使用蓝牙打印机打印一些文本。问题是我无法正确打印任何非拉丁字符。我有这个代码:
public void printTaggedText() throws IOException {
try {
byte[] theText = "Întregul text în românește țș".getBytes("utf8 ");
for (byte bit : theText) {
System.out.println("Reached: " + Integer.toHexString(bit));
}
this.printText(theText);
} catch (Exception e) {}
}
我已经用 for 检查编码是否正确,因此我查看了结果值,它们似乎没问题(我将它们转换回字符串,得到相同的文本)。
这是 printText 函数:
public void printText(byte[] b) throws IOException {
synchronized(this) {
this.write(b);
}
}
这是写:
public synchronized void write(int b) throws IOException {
this.write(new byte[]{(byte)b});
}
public synchronized void write(byte[] b) throws IOException {
this.write(b, 0, b.length);
}
public synchronized void write(byte[] b, int offset, int length) throws IOException {
this.mBaseOutputStream.write(b, offset, length);
}
结果如下所示:
我知道打印机支持这些字符,因为它可以使用另一个应用程序正确打印它们。