pf » Reverse IP Address Lookup with ColdFusion + Java

Reverse IP Address Lookup with ColdFusion + Java

coldfusionjava

I needed to do a reverse lookup on some IP addresses in a database today. I found that you can do this pretty easily with java, and just as easily with ColdFusion. Here it is:

<cfset inet_address = CreateObject("java", "java.net.InetAddress")>
<cfset host_name = inet_address.getByName("66.249.66.99").getHostName()>
<cfoutput>#host_name#</cfoutput>

In java this would simply be:

System.out.println( java.net.InetAddress.getByName("66.249.66.99").getHostName() );


Related Entries
6 people found this page useful, what do you think?

Trackback Address: 618/B2C48C72FA8826EB3A8686F940EC781B
On 01/10/2007 at 2:29:22 PM MST Fernando S. Trevisan wrote:
1
Or you could use:

<cfscript> writeOutput(CreateObject("java", "java.net.InetAddress").getByName("66.249.66.99").getHostName()); </cfscript>

[ ]'s great post =)

On 01/10/2007 at 2:52:25 PM MST Fernando S. Trevisan wrote:
2
OR: <cfoutput>#CreateObject("java", "java.net.InetAddress").getByName("66.249.66.99").getHostName()#</cfoutput>

As well =))

On 01/10/2007 at 3:55:05 PM MST Pete Freitag wrote:
3
Right on Fernando - I wasn't trying to make it look easier in java, but after reading the post again some might have come away with that. The same shortcuts I used in the java example could be used in ColdFusion as you did, above.

On 01/10/2007 at 4:56:26 PM MST Scott F Stroz wrote:
4
Wow. I had a need for using the InetAddress Java class today as well. I planned on blogging it, but you beat me to it.

On 01/11/2007 at 2:29:26 AM MST sagepowder wrote:
5
Has anyone ever done business with http://www.javacitywarehouse.com They

On 01/11/2007 at 6:49:03 AM MST Adam Howitt wrote:
6
We also use inet_address.getLocalHost().getCanonicalHostName() for one of our sites in a cluster so if a client has an issue we can have them view source and read out the machine name.

On 02/10/2007 at 3:20:42 PM MST Lucian wrote:
7
http://www.ipgp.net is a good tool to view information about ip addresses

On 02/27/2007 at 3:02:18 PM MST fira wrote:
8
why not use this accurate ip address locator: http://www.ip-adress.com




  



Spell Checker by Foundeo





Subscribe to my RSS Feed: solosub RSS
Tags