| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
g2b4
10年前发布

Android下通过wifi调用打印机打印

Android下通过wifi调用打印机打印

// Code in Activity  try {    Socket sock = new Socket("192.168.199.245", 9100); // ip and port of printer    PrintWriter oStream = new PrintWriter(sock.getOutputStream());    oStream.println("\t\t Text to The Printer");    oStream.println("\n\n\n");    oStream.close();    sock.close();  } catch (UnknownHostException e) {    e.printStackTrace();  } catch (IOException e) {    e.printStackTrace();  }