Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey guy's I'm an intermediate programmer looking to learn more. I'm trying to figure out the basic idea about IP Hooking. I'm trying to make a program similar to what the hosts file does in windows but for one specific program. How would I go about doing this?

I want to implement it to a website

share|improve this question

1 Answer

I'm not 100% sure but perhaps you could, create a HashMap of String to InetAddresses to associate the name of a IP/Hostname in a list or even an array of InetAddresses then create a new socket() using that IP/Hostname and call public void shutdownInput(). Like I said I never tested it but it may be worth a shot.

http://docs.oracle.com/javase/1.4.2/docs/api/java/net/Socket.html#shutdownInput()

http://docs.oracle.com/javase/1.4.2/docs/api/java/net/InetAddress.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.