| Thread | Last Post | Replies |
|
| getConstructor question | 28 Mar 2006 00:17 GMT | 1 |
I am trying to get getConstructor to work. I'm having problems. Here is my test code: import java.lang.reflect.*; public class ConstructorTest {
|
| How to ignore invalid SSL Certificates | 27 Mar 2006 23:12 GMT | 10 |
Hi everybody :-) I'm trying to build an application that serves as a Client Side frontend for a webpage using HttpClient 2. Because I have some security problems I decided that using https would be nice, but my SSL
|
| Java Regional Settings Problem | 27 Mar 2006 22:37 GMT | 9 |
I am having difficulties formatting dates for logging using the DateFormat object in Java (1.5.0_06). It seems that Java is ignoring any changes I make to my workstations Regional Settings (Windows XP, Service Pack 2) when it formats the dates for display. To demonstrate I
|
| JSP: How to check to see if file exists? | 27 Mar 2006 21:29 GMT | 1 |
What's the simplest way to see if a file exists on the server in JSP? If possible, I'd like the the equivalent of: <% if(FunctionThatTellsMeFileExists("images/001.png")) {
|
| A language-agnostic language | 27 Mar 2006 21:19 GMT | 24 |
An unGooglable. Reading recent Eclipse posts, and hearing the contention between those using Java 1.4 and 1.5, let alone between Java and C++, I'd have thought that we'd have, by now, another layer of source code, beneath
|
| Looking for a Java UML *like* tool | 27 Mar 2006 20:48 GMT | 5 |
I say *UML* because it may not be what I'm looking for. I seek a java library that can take a set of objects and connections between those objects and display them connected in a UI, preferably in Swing (although image files would be fine I suppose.)
|
| Using Jpcap | 27 Mar 2006 20:37 GMT | 1 |
Hi I am a new member to group can any one tell me how to use Jpcap library in Java I am supposed to develop a sniffer that is written in Java Java does
|
| Why this error of "variable might not have been initialized"? | 27 Mar 2006 20:26 GMT | 14 |
why am I getting this error "varible temp1 might not have been initialized" and "varible temp2 might not have been initialized" Here is the method tht returns a boolean comparison result: // call in driver as t1.isLess(t2)
|
| Design pattern for multiple views | 27 Mar 2006 20:16 GMT | 3 |
I'm working on a simple presentation-program. I've chosen for a Model View Controller architecture. The model contains the (static) elements of the presentation (such as text, images, etc) and the (dynamic) transitions between presentation states (such as highlight an element,
|
| data structures | 27 Mar 2006 20:03 GMT | 1 |
does anyone know of a link where i can take a look at tenary trees (when a node has more than two children) to see how they work?
|
| Java rich client design patterns: where to find? | 27 Mar 2006 19:30 GMT | 8 |
another possible title for this message would be: Where can I find effective references on design patterns and best practices to build complete and elegant Swing applications? I have been developing Swing applications for about 3 years and never
|
| fork process in Java | 27 Mar 2006 18:45 GMT | 7 |
Besides Runtime.exec("executiable name"), what are the other ways to "fork a process" in Java. Thanks. JJ
|
| Changing Integer value? | 27 Mar 2006 18:34 GMT | 4 |
Does anybody have an idea why the Integer object value is not changed here, eventhough it is passed by reference? Program: ======
|
| Converting EST to GMT | 27 Mar 2006 18:23 GMT | 2 |
what is the easiest way to convert EST to GMT using Java? Since GMT is immunte to daylight saving differences, we cannot depend on a constant difference. TIA
|
| Getting keys from a SortedMap | 27 Mar 2006 17:10 GMT | 3 |
Hello. I am storing some data in a TreeMap, and I need to get a subset of that data. Conveniently, I can get exactly the data I want using tailmap, which returns a SortedMap. Not so conveniently, I need to get my objects out of the SortedMap, which seems to require knowing what
|