| Thread | Last Post | Replies |
|
| Email send retry | 08 Jun 2006 18:22 GMT | 7 |
I have to write code to send an email and if for some reason it is not sent it should keep retrying, i am new to java but coded for a few years in c++ so i jot down kinda rough algorithm can you guys see the below code and comment whether it looks ok or not,
|
| Search an Java Applet Viewer for EXCEL file | 08 Jun 2006 18:02 GMT | 4 |
I connect from Web on a PC without EXCEL and i search an JAVA APPLET EXCEL VIEWER ? Regards Philippe
|
| get request parameters are not in order | 08 Jun 2006 17:47 GMT | 4 |
Here's the code fragment to enumerate the request parameters list, but the order is not the same as in the query string. http://localhost:9999/projWeb/EStoreServlet?a=1&b=2&c=3&d=4
|
| WeakHashMap for values | 08 Jun 2006 17:40 GMT | 3 |
I need something like WeakHashMap, but with the inverse function: I want the values to be weakly referenced to, and the entry to be discarded from the map once the value no longer exists. Is there a standard implementation for this?
|
| PROBLEM OFUPLOAD OPENCMS 5.1 | 08 Jun 2006 16:28 GMT | 2 |
Hi to all i'm an italian user I wanna know how many megabyte i can upload with OPENCMS???My version is 5.1 some of you can help me please??? Thanks for your reply
|
| Fuction Question | 08 Jun 2006 15:20 GMT | 10 |
I'm try to use a function to set some text and set the icons of various labels and I thought I could send the labelnames to the function and use it to set them but I'm having issues. It doesn't work all the time. It randomly sets the text of various labels or sometimes none at all.
|
| Two JTable questions | 08 Jun 2006 14:49 GMT | 1 |
Well I'm writing a database program that is supposed to store contents of a warehouse (well small warehouse, really small warehouse). And to have a user-friendly GUI. And I thought that displaying entire contents of database (backed by a
|
| Intercepting mouse events on JComboBox | 08 Jun 2006 14:32 GMT | 1 |
Anyone know how to intercept a mouse event on a JComboBox? Specifically, I am trying to give a different functionality if the Component is right-clicked upon (MouseEvent.isMetaDown()) but I cannot find in the source where this might occur to override it? Thanks, Ike
|
| Compilation problem | 08 Jun 2006 13:05 GMT | 2 |
In a java source file we have the following: String value = Boolean.toString(succeed); When we compile we get: Cannot resolve symbol toString()
|
| exec in same frame not in new browser ? | 08 Jun 2006 12:39 GMT | 3 |
Could i launch browser with command Runtime.getRuntime().exec( "rundll32 url.dll,FileProtocolHandler "+filePath) without launching new Browser, but in same Browser ??? I don't use ShowDocument, because Tomcat webserver launch PDF on local
|
| Executable jar | 08 Jun 2006 11:16 GMT | 10 |
How can I distribute a java aplication as a .exe file? I've read about executable jars, but those require either a command or the right association for the jar files. I would like my small group of users to simply be able to click an a .exe file or a .bat without an additional
|
| Incremental compilation in IDEs | 08 Jun 2006 01:52 GMT | 3 |
Any idea how the ide's do incremental ocmpilation as you type? Is it just running a background thread whenever the user makes a change and is idle? Any pointers would be appreciated.
|
| Pass arguments as name value pairs to java program | 08 Jun 2006 00:41 GMT | 5 |
I have seen java programs executed as below.. java TestArguementProgram --arg1 firstParameter --arg2 secondParameter My question is, how is this format parsed once inside the java program (besides using StringTokenizer)? I have used the Properties class to
|
| About Tomcat default application | 07 Jun 2006 23:16 GMT | 4 |
I have installed Tomcat 5.5 on Windows 2000. It's default application is located at: C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\ROOT\index.jsp
|
| What does dollar sign in ClassName$.class mean? | 07 Jun 2006 22:44 GMT | 1 |
I know that ClassName$InnerClass.class is used for inner classes but why does the compiler sometimes create one or more files like ClassName$.class or ClassName$1.class? Thanks
|