Skip to content

Instantly share code, notes, and snippets.

@DanielAdeniji
Last active January 1, 2022 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielAdeniji/dc4e93659deb75ec96d416b0fd064739 to your computer and use it in GitHub Desktop.
Save DanielAdeniji/dc4e93659deb75ec96d416b0fd064739 to your computer and use it in GitHub Desktop.
helloWorldInJava
public class helloWorld
{
public static void main(String[] args)
{
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
}
import java.net.InetAddress;
public class helloWorldContext
{
public static void main(String[] args)
{
StringBuilder sbHostname = new StringBuilder();
String strUsername = null;
String strHostname = null;
int iRC = 0;
String FORMAT_HELLO_USERNAME = "Hello %s! I am %s%n";
String FORMAT_NETWORK_HOSTNAME = "%s is %s %n";
strUsername = System.getProperty("user.name");
System.out.printf
(
FORMAT_HELLO_USERNAME
, "World"
, strUsername
);
iRC = getNetworkInfo
(
sbHostname
);
if (
( iRC == 0)
&& (sbHostname != null)
)
{
//get string
strHostname = sbHostname.toString();
System.out.printf
(
FORMAT_NETWORK_HOSTNAME
, "Hostname"
, strHostname
);
}
}
private static int getNetworkInfo
(
StringBuilder sbHostname
)
{
int iRC =0;
InetAddress inetAddress;
String strHostname;
try
{
/*
Get Network Object
*/
inetAddress = InetAddress.getLocalHost();
if (inetAddress != null)
{
/*
Get Network Hostname
*/
strHostname = inetAddress.getHostName();
/*
Capture Network Hostname into StringBuffer
*/
if (strHostname != null)
{
sbHostname.append(strHostname);
}
iRC = 0;
}
}
catch (java.net.UnknownHostException ex)
{
iRC =-1;
ex.printStackTrace();
}
return (iRC);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment