我的要求是在不使用任何基于云的服务的情况下从 android 设备打印文件。
我已经能够使用“原始”打印协议来实现它,即只需将文件发送到端口9100的打印机 IP 地址。这是代码片段:
client = new Socket(ip,port); //Port is 9100
byte[] mybytearray = new byte[(int) file.length()]; //create a byte array to file
fileInputStream = new FileInputStream(file);
bufferedInputStream = new BufferedInputStream(fileInputStream);
bufferedInputStream.read(mybytearray, 0, mybytearray.length); //read the file
outputStream = client.getOutputStream();
outputStream.write(mybytearray, 0, mybytearray.length); //write file to the output stream byte by byte
outputStream.flush();
bufferedInputStream.close();
outputStream.close();
“原始”打印协议的问题在于无法从打印机获取状态。
因此,我最近阅读了有关IPP和LDR的信息,我们可以使用它们从打印机中获取状态。
我试图找到一种使用android实现它们的方法,但没有成功。我已经完成了这个答案,但没有成功找到我的解决方案。
如果有人可以指导我如何在 android 中实现 IPP 或 LDR,那将非常有帮助。
提前致谢!