gpt4 book ai didi

printing - 我可以使用蓝牙将 Windows Phone 8 打印到可移植打印机吗?

转载 作者:行者123 更新时间:2023-12-04 14:15:15 27 4
gpt4 key购买 nike

我正在 Windows Phone 8 上开发应用程序。此应用程序必须使用移动打印机(如 Zebra MZ 220 移动打印机)打印票证。

我一直在搜索有关使用 Windows Phone 8 打印到蓝牙打印机的信息,但没有太多信息。

我担心不得不在另一个移动操作系统(如 android)中开始新的开发,仅仅因为 wp8 不支持蓝牙打印。

有没有关于它的例子?
是否有与 Microsoft Windows Phone 8 兼容的可移植打印机?

最佳答案

此代码适用于与诺基亚 820 配对的 Zebra 420。

 private async void PrintStuff()
{
string command = "^XA^LH30,30^F020,10^AD^FDHello World^FS^XZ";
Byte[] buffer = new byte[command.Length];
buffer = StringToAscii(command);

PeerFinder.AlternateIdentities["Bluetooth:Paired"] = "";
var pairedDevices = await PeerFinder.FindAllPeersAsync();

if (pairedDevices.Count == 0)
{
Debug.WriteLine("No paired devices were found.");
}
else
{
PeerInformation selectedDevice = pairedDevices[0];
StreamSocket socket = new StreamSocket();
await socket.ConnectAsync(selectedDevice.HostName, "1");
await socket.OutputStream.WriteAsync(WindowsRuntimeBufferExtensions.AsBuffer(buffer));
}
}

关于printing - 我可以使用蓝牙将 Windows Phone 8 打印到可移植打印机吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14162889/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com