| Thread | Last Post | Replies |
|
| Multiple .properties loading from jar file | 06 Aug 2007 09:14 GMT | 1 |
I have a strange issue with .properties loading. I'm developing swing application and i'd like to add internationalization. It doesn't matter how i solved this issue, because it works ;) i have only one problem ...
|
| java mail handling bounced messages | 06 Aug 2007 07:25 GMT | 6 |
i am using java mail for sending mails using SMTP server. is there anyway by which i (my application) can get to know if the mail bounced ? is there any synchronous call which will let me know immidiately if
|
| mutithreading in webapps | 06 Aug 2007 02:54 GMT | 7 |
i was trying to implement a design which is like dispatcher, worker model where N number of requests come in, which are queued for the dispatcher to pick them up and spawn a worker thread to process each of these requests. of course we will use thread pool for worker
|
| Java Virtual Machine | 05 Aug 2007 22:04 GMT | 1 |
|
| is using system stack (recursion) faster than using ArrayList? | 05 Aug 2007 21:21 GMT | 4 |
the task: parse String on dots and create an array of portions: input: "part1.part2.part3.part4" output: {"part1", "part2", "part3", "part4" } One approach is to use a loop and a dynamic structure such as
|
| Java Web Start update | 05 Aug 2007 19:38 GMT | 1 |
I'm using Java Web Start with my application. At the machine is installed Java 1.6 u1. Setup first version of application. After deploy second version of application and run application start update, but console show that application use old packages. At the same time
|
| I hate JNI | 05 Aug 2007 18:59 GMT | 4 |
So I have this C++ library I've written that is required to interface with Visual Basic and Java as well as be plugged into an existing C++ application. Visual Basic wasn't that big of a deal, just a quick little VB wrapper and everything is great. C++, obviously, not a
|
| Is it possible to create Enum types at Runtime? What are the implications? | 05 Aug 2007 15:54 GMT | 3 |
So, I want the nicities of an enum, but I would like to extend the enum list at runtime. is such a thing possible? Example: public enum Day {
|
| Validate xml using nested schemas | 05 Aug 2007 09:09 GMT | 1 |
I would like to validate an xml file using nested schemas (that is schemas referring to other schemas). I've tried with the following setup, but it does not work an gives me an exception.
|
| Java homework, book lacking information | 05 Aug 2007 08:44 GMT | 5 |
I just reciently started a Java programming class, in our second week the book is lacking for telling us how to do a problem. I will write the problem out then say where I need help at the moment, the rest I think I have figured out though.
|
| Does the clone() method of ArrayList<> make a copy of the objects in the ArrayList? | 04 Aug 2007 23:33 GMT | 16 |
anotherArrayList = (ArrayList<Something>) oneArrayList.clone(); anotherArrayList.get(0).makeSomeChange(); Will the change made in the second line make effect on oneArrayList.get(0)?
|
| Word 2007 XML merge & PDF conversion on Unix | 04 Aug 2007 20:24 GMT | 1 |
Hi...All, We have a requirement where we have to do the mail merge for Word documents on Unix & then convert into PDF, all on unix/linux platform. I can convert all the Word documents to Word 2007 xml & store on unix
|
| Eclipse 3.2 and CVS - where and how to get and install CVS? | 04 Aug 2007 19:41 GMT | 3 |
I'm using Eclipse 3.2 and have to install CVS to run via Eclipse. If anyone else is using CVS w/Eclipse and knows where to obtain CVS and instructions to set it up I'd appreciate it. It is very unclear using Google searches where CVS for Windows/Eclipse actually lives. Thanks
|
| how to coonvert decimal number in tobase 64 format. | 04 Aug 2007 19:25 GMT | 2 |
Hi friends, My requirement is how to coonvert decimal number in tobase 64 format. the decimal number may be of type.
|
| Java Media Framework:To Compress AVI video. | 04 Aug 2007 14:13 GMT | 7 |
Hi!! I have got a program that it make an AVI video without compressing, with RGB format. How can I compress the video with format MJPEG (for example)???? Regards!
|