---
title: "How do I convert a numeric IP address like 192.18.97.39 into a hostname like java.sun.com?"  
description: "How do I convert a numeric IP address like 192.18.97.39 into a hostname like java.sun.com?"  
author: "Anonymous User"  
published: 2015-05-01  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/2466/how-do-i-convert-a-numeric-ip-address-like-192-18-97-39-into-a-hostname-like-java-sun-com  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# How do I convert a numeric IP address like 192.18.97.39 into a hostname like java.sun.com?

By InetAddress.getByName("192.18.97.39").getHostName() where 192.18.97.39 is the IP address.

## Answers

### Answer by Anonymous User

By InetAddress.getByName("192.18.97.39").getHostName() where 192.18.97.39 is the IP address.


---

Original Source: https://www.mindstick.com/interview/2466/how-do-i-convert-a-numeric-ip-address-like-192-18-97-39-into-a-hostname-like-java-sun-com

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
