从选项卡打印到通过局域网连接到同一网络的打印机

时间:2019-07-23 07:59:46

标签: android android-networking android-print-framework

我有一个通过LAN连接到android标签的同一网络的打印机。打印应该是带有图像和表格的特定格式。我不想在打印过程中显示任何对话框。打印过程应该是自动的。

try {


                Socket sock = new Socket("192.168.10.22", 9100);
                PrintWriter oStream = new PrintWriter(sock.getOutputStream());
                oStream.println("HI,test from Android Device");
                oStream.println("\n\n\n");
                oStream.println("Printing works!!!");
                oStream.println("\n\n\n");
                oStream.close();
            } catch (Exception e) {

                e.printStackTrace();


            }

我尝试了上面的代码,但无法更改字体大小或打印图像

0 个答案:

没有答案