• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#Lpt端口打印类的操作浅析

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C#LPT端口打印类的操作是什么呢?首先让我们看看什么是LPT端口(打印机专用)?LPT端口是一种增强了的双向并行传输接口,在USB接口出现以前是扫描仪,打印机最常用的接口。最高传输速度为1.5Mbps,设备容易安装及使用,但是速度比较慢,下面是C#LPT端口打印类的操作具体实例:

 

/// <summary>  
    /// LPTControl 的摘要说明,C#LPT端口打印类的操作  
    /// </summary>  
    public class LPTControls
    {
        public LPTControls() { }

        [StructLayout(LayoutKind.Sequential)]
        private struct OVERLAPPED
        {
            int Internal;
            int InternalHigh;
            int Offset;
            int OffSetHigh;
            int hEvent;
        }

        [DllImport("kernel32.dll")]
        private static extern int CreateFile(
         string lpFileName,
         uint dwDesiredAccess,
         int dwShareMode,
         int lpSecurityAttributes,
         int dwCreationDisposition,
         int dwFlagsAndAttributes,
         int hTemplateFile
         );

        [DllImport("kernel32.dll")]
        private static extern bool WriteFile(
         int hFile,
         byte[] lpBuffer,
         int nNumberOfBytesToWrite,
         ref int lpNumberOfBytesWritten,
         ref OVERLAPPED lpOverlapped
         );

        [DllImport("kernel32.dll")]
        private static extern bool CloseHandle(
         int hObject
         );

        //C#LPT端口打印类的操作  
        private int iHandle;
        public bool Open()
        {
            iHandle = CreateFile("lpt1", 0x40000000, 0, 0, 3, 0, 0);
            if (iHandle != -1)
            {
                return true;
            }
            else
            {
                return false;
            }
        }

        public bool Write(String Mystring)
        {
            if (iHandle != -1)
            {
                int i = 0;
                OVERLAPPED x = new OVERLAPPED();
                byte[] mybyte =
                System.Text.Encoding.Default.GetBytes(Mystring);
                return WriteFile(
                iHandle, mybyte, mybyte.Length, ref i, ref x);
            }
            else
            {
                throw new Exception("端口未打开!");
            }
        }

        public bool Close()
        {
            return CloseHandle(iHandle);
        }
    }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap