How to keep checking if port is open, by issuing socket connects
I recently need to check if a particular application is online and listening on a particular set of ports. I figured that the best way to do this was to peri...
I recently need to check if a particular application is online and listening on a particular set of ports. I figured that the best way to do this was to peri...
One of the great features of any programming language is the ability to repeat blocks of code, sometimes indefinately, sometimes until a certain condition is...
The for loop is great, but is it really that nice when you want to iterate over an array or collection? You’d have to do something like the following :
As I’ve covered in a previous post regarding the while loop, the do-while, often refered to as the do loop is very similar. Lets have a look at the psuedo co...
Just another bitesize SCJP post here, looking at the while loop in Java.