| Thread | Last Post | Replies |
|
| tools useful for building database front-end ? | 11 Jul 2005 12:08 GMT | 3 |
I'm looking for java related specific tools for building good database front-end but not web centric. That is something equivalent to ms-access in term of features. TIA
|
| how to eliminate quotes in a string ... e.g. String str= "abc\"def"; | 11 Jul 2005 10:20 GMT | 7 |
please help... Given: String str1= "abc\"def"; String str2= "\"1234\""; Required: String str1 = "abcdef";
|
| System program/ Application program ?? | 11 Jul 2005 10:09 GMT | 2 |
Is there any criteria to judge whether the code is of system programming or application programming?? Is there any set of specific instuctions/ classes meant for system programming???
|
| narrowing the focus | 11 Jul 2005 09:51 GMT | 1 |
One thing I imagined a SCID should do for me is for example let me examine all the getFont method implementations in a set of classes that derive from a class with an abstract getFont method. It should show me that and nothing else.
|
| TCP Keep Alive probes | 11 Jul 2005 08:40 GMT | 1 |
I have a java client app and want to send TCP Keep Alive probes to my server every 10 minutes as opposed to the default 2 hours. I see a setKeepAlive() call in the API, but that only turns on whether you want to send Keep Alives or not. How do i specify the Keep Alive probe
|
| Is \r\n considered as two or four characters? | 10 Jul 2005 23:12 GMT | 4 |
Is \r\n considered as two or four characters? While reading an RFC, it stated that "the maximum length of a message shall not exceed 512 characters, including the trailing CR-LF. Thus, there are 510 characters allowed for the command and parameters".
|
| JAVA API for PDF | 10 Jul 2005 17:41 GMT | 4 |
Is there a way to identify if there are any non embedded fonts in a pdf document using a java API. Any java API's for pdf that may do this? Your input is very well appreciated.
|
| [unchecked] unchecked call to compareTo(T) as a member of the raw type java.lang.Comparable | 10 Jul 2005 09:14 GMT | 1 |
Hello World! This is my code: public class Queue implements Iterable {
|
| class bytecode editor application | 10 Jul 2005 06:28 GMT | 1 |
I found a couple of month ago a small swing(?) application that was able to inspect and modify a java class file at the bytecode level. Unfortunatly my laptop crashed recently and I cant find it anymore. It's not cafebabe and all my googling has been unsucessfull so far.
|
| Demoting and Promoting Serialised Objects | 10 Jul 2005 05:34 GMT | 4 |
I see a general problem I call demoting and promoting objects. A Dog gets promoted to a Dalmatian object by gaining extra Dalmatian-specific fields. A Dalmatian gets demoted to Dog object by stripping off its Dalmatian
|
| make a BufferedImage from array | 10 Jul 2005 04:57 GMT | 1 |
Support I have a array of integer "int[][] data", each of the element is a 32 bits color data. How can I make a BufferedImage from this array? Thanks,
|
| break removal | 09 Jul 2005 23:57 GMT | 9 |
Let's say you have some code like this: case 1: if ( x ) if ( y )
|
| ANN: HELLOWORLD | 09 Jul 2005 23:28 GMT | 4 |
http://leowong2004.blogspot.com/2005/07/helloworld.html Leo Wong
|
| EnumSet, what the ? | 09 Jul 2005 20:16 GMT | 6 |
I discovered that only the static members of EnumSet are public. In other words, EnumSets appear to be immutable at least to anyone but Sun. This is highly puzzling. Why bother with a bitset representation for a
|
| Hibernate tools | 09 Jul 2005 18:08 GMT | 4 |
I'm looking into the Hibernate O/R library to potentially cut down on the time required to develop database-backed applications. The concepts are simple enough to understand, but setting up all the files seems a little time-consuming.
|