code show as below:
Public static void main (String [] args) {
String hostname = NULL;
String hostport = "80";
String protocol = "http";
IF (args! = null && args.length> 0) {
For (int i = 0; i
IF (args [i] .equalsignorecase ("- h")
&& args.length> = i 1) {
Hostname = args [i 1];
Else IF (args [i] .Equalsignorecase ("- t")
&& args.length> = i 1) {
Protocol = args [i 1];
Else IF (args [i] .Equalsignorecase ("- p")
&& args.Length> = i 1)
Hostport = args [i 1];
}
}
}