| Thread | Last Post | Replies |
|
| Java package structure | 15 May 2007 01:40 GMT | 2 |
Hi, folks, Just had one of those embarrassing moments. I was trying to explain why I think that one Java package structure is better than another, and someone said, "So, what do Sun recommend?"
|
| Factory methods | 14 May 2007 20:26 GMT | 9 |
Is there a way (pattern, ...) to enforce the Class B (example bellow) to implement some factory method. Something that would have the same effect as the flawed example bellow. All classes that implement A should have to know how to instantiate some
|
| looking for some form of collection Iterable<I> | 14 May 2007 18:31 GMT | 2 |
I am looking for a class to replace my current Hashtable Currently Declared like so Hashtable<Double, MyClass> m_cached; I want to be able to do things like
|
| Different space carracters | 14 May 2007 15:12 GMT | 4 |
I'm trying to use the trim() function on a simple String but the trim doesn't remouve the leading space. I looked at the string in MS Word and found out that two different carracters are used to mark spaces (a dot ˙or a circle °). Trim() gets rid of all the dot spaces but not the
|
| Unicode Java | 14 May 2007 15:10 GMT | 4 |
Java supports Unicode. How can I use Unicode characters (like Devnagari, Arabian) onto my applets and standalone applications?
|
| javamail: can send to only 1 recipient.... | 14 May 2007 14:30 GMT | 2 |
hi, I'm having a problem with Javamail.. I can send email only to one recipient.. if I try to send to more than one recipient I get an error.. message.setRecipient(Message.RecipientType.TO, to); message.addRecipient(Message.RecipientType.TO, toW);
|
| Small problem of using printstream writer? | 14 May 2007 14:25 GMT | 1 |
I have a small problem of outputting data to the printstream. When it compiles, it has the following error 'void' type not allowed here pout.println(arr.display());
|
| java and IPv6: what about? separate or dual stack? | 14 May 2007 06:42 GMT | 1 |
I know that Java support IPv6... but how? I see two tipe of stack: -dual stack -separated stack
|
| Backing up files with an IDE? | 14 May 2007 03:18 GMT | 3 |
I love Eclipse, but I also love keeping my old methods of coding locked up in a document of .bacs. Any way to do this with Eclipse?
|
| sorting the content of a file with 60000 column? | 13 May 2007 18:12 GMT | 4 |
I have to sort the content of a file in sequence number order. The sequence no is not in order. The file is in the following format Sequence no time
|
| Inheritance question???Object class | 13 May 2007 17:40 GMT | 3 |
im basically a newbie to java java doesnt support multiple inheritance ie you can atmost extend only from one class and implement other interfaces to simulate mulitple inheritance
|
| Why this applet goes wrong? | 13 May 2007 15:50 GMT | 1 |
I wrote this applet but when I resize it (to invoke paint method) it works different every time. Do you know exactly what's the cause of it? import java.awt.*;
|
| How to solve this problem of initialization | 13 May 2007 15:27 GMT | 3 |
// Create JradioButton and add to jrpnlRadBtn String temp[] = {"Compilers","Operating Systems","Computer Networks"}; JRadioButton jrbtnSub[];
|
| Effect of adding and EventListener twice | 13 May 2007 13:01 GMT | 1 |
What is the effect if I add EventListeners (like ActionListener) twice to an Object (like JButton or Button) ?
|
| JRE vs. JDK question | 13 May 2007 06:50 GMT | 2 |
I've started some Java development on Windows and I have a question I was hoping someone could tackle. It's a bit complicated, so please bear with my explanation: I am using the 1.5 JDK, which I installed in C:\program files\java. Also
|