Returns the name of the local host. This is lazily discovered. @return The name of the local host.
()
| 574 | * @return The name of the local host. |
| 575 | */ |
| 576 | private synchronized String getHostName() { |
| 577 | if (hostName==null) { |
| 578 | try { |
| 579 | hostName = InetAddress.getLocalHost().getHostName(); |
| 580 | } catch (UnknownHostException uhe) { // Should never happen |
| 581 | hostName = "Unknown"; |
| 582 | } |
| 583 | } |
| 584 | return hostName; |
| 585 | } |
| 586 | |
| 587 | |
| 588 | /** |