3
votes
How many threads should I use in my Java program?
The number that your application needs; no more, and no less.
Obviously, if you're writing an application which contains some parallelisable algorithm, then you can probably start benchmark …
1
vote
Best Books for Learning Java 6?
Learning Java from scratch? I'd say the Java Tutorials on the Sun web site are a pretty good start, to be honest; they cover la …
17
votes
4
votes
Swing buttons don’t react immediately! How can I change that?
The Concurrency in Swing tutorial from Sun is well worth a read. Excellent expla …
0
votes
How does relative file path works in Eclipse.
Paraphrasing from http://java.sun.com/javase/6/docs/api/java/io/File.html:
The classes under java. …
3
votes
How are sockets implemented in JVM?
Probably using the system-V socket calls exposed by the underlying platform, e.g. system-V under Unix, WinSock under Windows. The specification only dictates how a virtual machine must behave, so i …
3
votes
How do you handle Socket Disconnecting in Java?
Presumably, you're reading from the socket, perhaps using a wrapper over the input stream, such as a BufferedReader. In this case, you can detect the end-of-stream when the corresponding read opera …
7
votes
2
votes
How do you find all subclasses of a given class in Java?
Don't forget that the generated Javadoc for a class will include a list of known subclasses (and for interfaces, known implementing cl …
20
votes
Difference between ‘.’ and “.” in java
Literals enclosed in double quotes, e.g. "foo", are strings, whereas single-quoted literals, e.g. 'c', are chars. In terms of concatenati …
13
votes
C# equivalent of Java ‘implements’ keyword?
public class MyClass implements LargerClass
In Java, this declares that MyClass implements the …
6
votes
How can I get System variable value in Java?
Use the System.getenv() method, passing the name of the variable to re …
1
vote
please tell me where i made error in this jsp program..
I'd say the culprit was
File outputFile = new File( generate.xml );
I suspect you probably want to wrap that string in quote marks (""), otherwise it'll be treated …
4
votes
Comparing a string with the empty string (Java)
A string, is a string, is a string, whether it's the empty string or not. Use equals().
…
7
votes
Why do applets have such a low adoption level?
Back in the 1990s when Sun introduced applets to the world, the JVM was slow, and applets were slower. Think "wait fifteen minutes for it to finish loading" slow.
Slow technologies are dead …
