import java.io.*; import java.net.*; import java.util.*; public class vsmsclient { public static void main(String[] args) { try { Socket vsmssocket = new Socket("vsmsgateway.com",5000); //Copy and paste your license here String license = ""; //Phone number to send the text messaging to String phone_number = "4161112222"; //Your sms text goes here String msg = "Hello World"; String msg_buf = license+"\n"+phone_number+":"+msg+"\n"; OutputStream output = vsmssocket.getOutputStream(); output.write(msg_buf.getBytes()); } catch (Exception e) { System.out.println(e); } } }