博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Zebra - zebra command to get printer status
阅读量:5154 次
发布时间:2019-06-13

本文共 1023 字,大约阅读时间需要 3 分钟。

///         /// determine whether the network printer is in pause.        ///         ///         ///         ///         /// 
private bool IsPause(string ip, int port) { string strOutMsg = null; string zebraCommand = "^XA~HS^XZ"; PrinterCommunicate printerCommunicate = new PrinterCommunicate(); if (printerCommunicate.SendZPL_ViaNetwork(ip, port, zebraCommand, out strOutMsg)) { //split retMsg with "\r\n" string[] retMsgs = strOutMsg.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries); if (retMsgs != null) { string retFirstMsgItem = retMsgs[0]; string[] retFirstMsgItems = retFirstMsgItem.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); return "1".Equals(retFirstMsgItems[2]); } } return false; }

 

转载于:https://www.cnblogs.com/JustYong/p/4057254.html

你可能感兴趣的文章
线段树 延迟更新
查看>>
PAT L2-016 愿天下有情人都是失散多年的兄妹
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
C. Tanya and Toys_模拟
查看>>
使用SwingWork反而阻塞SwingUI
查看>>
Windchill中如何扩展字段长度?
查看>>
pytorch中的forward前向传播机制
查看>>
课后作业-阅读任务-阅读提问-4
查看>>
Delphi 深入浅出VCL(2)-TObject所有对象的根
查看>>
配置IIS虚拟目录遇到的5个问题
查看>>
2-03顺序表的操作
查看>>
耿丹CS16-2班第一次作业汇总
查看>>
查看mysql表大小
查看>>
命令行程序测试自动化
查看>>
My Blog
查看>>
array_reduce() 与 array_map()
查看>>
SASS实现代码的重用:混合器Mixin、继承
查看>>
《windows核心编程系列》三谈谈内核对象及句柄的本质
查看>>
Linux下安装maven
查看>>
使用OpenMP实现并行归并排序(Report)
查看>>