4

我想在我的 android 应用程序中包含通过 WiFi 从网络打印机打印图像的功能。我尝试了下面的代码,发布在stackoverflow上,但我只能打印文本:(如果我想打印图像该怎么办。

try
{
    Socket sock = new Socket("192.168.1.222", 9100);
    PrintWriter oStream = new PrintWriter(sock.getOutputStream());
        oStream.println("HI,test from Android Device");
        oStream.println("\n\n\n");
        oStream.close();
        sock.close(); 
    }
    catch (UnknownHostException e) 
    {
        e.printStackTrace();
    } 
    catch (IOException e) 
    { 
        e.printStackTrace();
    } 
}
4

0 回答 0