How would I go about doing this? I want to be able to check if a Minecraft server is online. The easiest method would be to check for an open port on 25565, but I don't know how to do this in Java, and anything I've read doesn't make sense to me. I have read about trying to create a 'server' on the remote domain and port, but that doesn't really make sense to me.
closed as not a real question by arshajii, KevinDTimm, Corbin, Chris Gerken, Graviton Nov 9 '12 at 2:31
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can do raw socket programming in java like any other language. Something like this should do.
|
|||
|
|
|
Write a client that connects to the server port (search for java client using your favorite search engine) If you want to be more thorough, use tcpdump (or something similar) to spy on the protocol between client and server (when you start Minecraft on your system) and emulate that in your client. BTW, a search of 'minecraft server protocol' returned : http://www.minecraftwiki.net/wiki/Classic_server_protocol |
|||
|
|