Back to project page DVBViewerController.
The source code is released under:
Apache License
If you think the Android project DVBViewerController listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.bennir.DVBViewerController.service; /*w w w .ja v a 2 s. c om*/ public class DVBServer { public String host = ""; public String ip = ""; public String port = ""; public String createRequestString(String command) { String ret = "http://" + ip + ":" + port + "/?" + command; return ret; } }