Есть принтер который находится в одной сети и он имеет свой адрес и порт, как к нему можно подключиться чтобы в дальнейшем печатать файл?
public class TiskActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tisk);
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
try {
methodClass();
} catch (Exception e) {
e.printStackTrace();
}
}
public void methodClass() throws Exception {
Socket clientSocket = new Socket("192.168.46.83", 9100);
DataOutputStream outToServer = new DataOutputStream(clientSocket.getOutputStream());
//The data being sent in the lines below illustrate CPCL one can change the data for the corresponding
//language being used (ZPL, EPL)
System.out.println(clientSocket.isConnected());
outToServer.writeBytes("test");
clientSocket.close();
}
}