admin管理员组文章数量:1344238
I use React Native to listen for thermal printing request via LAN IP, then I get the Buffer data. But I don't know how to decode it into text to send to Bluetooth Xprinter. Has anyone ever dealt with this case?
I tried with buffer.toString('utf-8'); but got error same in image
buffer.toString('utf-8') got this error
My code handle it
import TcpSocket from 'react-native-tcp-socket';
import RNXprinter from "react-native-esc-pos-xprinter";
import { Buffer } from 'buffer';
const server = TcpSocket.createServer((socket) => {
// socket.setEncoding('utf8');
let binaryData = Buffer.alloc(0);
socket.on('data', async (chunk) => {
binaryData = Buffer.concat([binaryData, Buffer.from(chunk)]);
});
socket.on('error', (error) => {
console.error('Socket error:', error);
});
socket.on('close', () => {
console.log('Connection closed');
const msg = binaryData.toString('utf-8');
console.log('Received closed data:', msg);
RNXprinter.pushText(msg, 0);
// Push Cut Paper
RNXprinter.pushCutPaper();
});
});
server.listen({ port: parseInt(port, 10), host: '0.0.0.0' }, () => {
console.log(`Server running on ${deviceIp}:${port}`);
setServerRunning(true);
Alert.alert('Print Server', `Server started on ${deviceIp}:${port}`);
});
});
本文标签: javascriptCannot Decode Buffer To Print BLE ECSPOS With React NativeStack Overflow
版权声明:本文标题:javascript - Cannot Decode Buffer To Print BLE ECSPOS With React Native - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743731814a2529313.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论