为了账号安全,请及时绑定邮箱和手机立即绑定

Android 网络打印机

标签:
Android

贴出代码求大神指点为什么连接上打印机了但就是打印不了,这是因为手机上没装打印机驱动的关系吗?

 private void dayin() {
         try {
            s = new Socket();
            isa = new InetSocketAddress(ip.getText().toString(), Integer.parseInt(port.getText().toString()));
            StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build());
            s.connect(isa, 1000);
//            DataInputStream dis = null;
//            DataOutputStream dos = null;
            if (s.isConnected()) {
                iscontect = true;
                Toast.makeText(MainActivity.this, "连接成功", 1000).show();
                PrintWriter out = new PrintWriter(new BufferedWriter(
                        new OutputStreamWriter(s.getOutputStream(), "GBK")),
                        true);
                /* 纵向放大一倍 */
                out.write(0x1c);
                out.write(0x21);
                out.write(8);

                out.println("\t\t" + "餐厅订单" + "\n");
                String printStr = "交易流水:" + :"111"+
                        "\n" + "商户名称:" + "测试商户" +
                        "\n" + "订单号:" + "24235476"+
                        "\n" + "卡号:" + "548329348"+
                        "\n" + "时间:" + " "+
                        "\n" + "交易金额:" + 1100+
                        "\n" + "**********************************************************";
                out.print(printStr);
//                out.println(print.getText().toString());
                out.println("\n\n");
                //自动切纸
                for (int i = 0; i < getCutPaperByte().length; i++) {
                    out.write(getCutPaperByte()[i]);
                }
                Toast.makeText(MainActivity.this, "打印成功", 1000).show();
                out.close();
            }
        } catch (IOException e) {
            Toast.makeText(MainActivity.this, "连接失败",Toast.LENGTH_LONG).show();
            e.printStackTrace();

         }
    }
    /**切纸命令*/
    public static byte[] getCutPaperByte(){
        byte [] buffer = new byte[5];
        buffer[0]='\n';//命令必须是单行
        buffer[1]=29;
        buffer[2]=86;
        buffer[3]=66;
        buffer[4]=1;
        return buffer;
    }

原文链接:http://www.apkbus.com/blog-682016-60624.html

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消