6 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for BogdanCov

I found this interesting *game* and I thought it would be nice to share with you. It's called [Drowning in Problems](http://game.notch.net/drowning/#) and **suddenly** it makes me to don't want to get old. :(

Member Avatar for vegaseat
1
287
Member Avatar for Slavi

@JC, I just wrote this code really quick and it does compile without errors for the server side ... but I am not sure about 1 thing .. here is the code first import java.net.*; import java.io.*; public class GameServer extends Thread{ private ServerSocket serverSocket; private enum Action { Scissors, …

Member Avatar for Slavi
0
415
Member Avatar for Slavi

I made the famous game Scissors, Paper, Rock as console application. The game runs great ... Now I want to make it a bit more advanced and allow 2 clients/users to play against each other from different locations. I checked few tutorials on sockets and networking, and in them they …

Member Avatar for Slavi
0
250
Member Avatar for Slavi

It's not really a problem that I am facing, more like looking for explanation ... I had this import java.util.*; import java.io.*; public class ReadFile { private static int lines=0; private static List<String> words=new ArrayList<String>(); private static String fullLine; private static int indexOfSpace; private static String getWord; private static String …

Member Avatar for JamesCherrill
0
224
Member Avatar for Slavi

A few days ago, i made a hangman game and I really want to complete it in any aspect. One of my ideas now is to "import" words from a file. Currently what I have is an Array of Strings (just a few words inside for testing) and what I …

Member Avatar for Slavi
0
255
Member Avatar for Slavi

How can I keep track of the unguessed letters yet in my JTextArea? In the non gui version I used an arraylist, worked fine but should I leave the arraylist and use it to track unguessed caracters ? The method is still console based, just started implementing the gui made …

Member Avatar for Slavi
0
748

The End.