| Recent Answers |
 |
 |
2009-01-01 Java - Graphical simulation, Threads, CPU usage: Don't rely on paint if you want to do continuous updates. Instead start a new thread, put its priority a little low (so it won't hog your system if other things are running). On that thread in a while...
|
2009-01-01 Java - core java: To create a directory (assuming Windows OS) 1. Right click in Windows Explorer 2. Select New -> Folder 3. Copy the Java file into the new directory To run the program: 1. Open a command prompt...
|
2008-12-30 Java - What is Java MIDP 2.0 or Enlarge: Answer to 1: MIDP 2.0, combined with Connected Limited Device Configuration (CLDC), is the defacto standard for mobile Java devices as far as I can tell. In my experience, however, standards are rarely...
|
2008-12-29 Java - difference between C and java: The main difference between C and Java compilers is that C compilers produce system byte code that can be executed directly but the Java compiler produces Java byte code which must be run (interpreted)...
|
2008-12-29 Java - J2ME text to speech: Siddarth, There is a standard Java API for speech handling (both output and input), the Java Speech API. You can read about it here: http://java.sun.com/products/java-media/speech/index.jsp Unfortunately...
|