I am interested with pairing up the commute with some other folks who might be going to this Symposium. I live in Ashburn and work in Reston. Email me back...
Hello, I need to format (convert to String) a BigDecimal that holds a currency value based on the three character currency code like USD, EUR, CAD, etc. JDK...
Why not create a currency instance of NumberFormat using a Locale you know returns the correct formatter? You could use currency locale constants mapped to the...
Asa, The problem is not all the 3 letter currency code has a Local associated with it in Java. If I call Locale.getAvailableLocales(), it is a much smaller ...
Sorry. I didn't realize the formatter did not support all the currencies you were planning to support. Then short of going to J4 then my only solution would be...
... Why not try to port just a few classes from JDK1.4 to JDK1.3? Currency, CurrencyData and NumberFormat would be few of them. I can not guarantee that this...
I think sun has some security checks that prevent you from overriding 'java' packages. Even if I am able to do that, I doubt our corporate hosting facility...
... You don't have to put them in java.util package, put them anywhere you want. ... I think that new java.text.NumberFormat and DecimalFormat classes do it,...
Actually I foudn the answer to my problem and fixed it. The External Executor option in lets you ass command line parameters for the programs you execute...
I have some code like this for(int i = 0; i < value; ++i){ lstModel.addElement("Test " + i); } lstModel is a DefaultListModel attacted to a Jlist. The Jlist is...
I can't be sure without seeing more of your code, but at first glance, it sounds like you might have some issues because you are updating your model on one...
... The problem here is you are trying to load application level classes from the system classloader which isn't going to happen unless you did something like...
Crossroads Consulting is currently seeking Senior J2EE developers for clients in the Northern Virginia area. Candidates with security clearances are ideal, but...
Futrend Technology Inc is also seeking senior J2EE developer! Thanks for considering and referring us to qualified people you know !! We are looking for one...
MAXIMUS is seeking Senior J2EE developers to work in Reston, VA. Enclosed are requirements for the opening. Please submit resume and contact information to...
This is a resminder that the Northern Virginia Java User Group has a SEPARATE MAILING LIST for job postings at novajug_jobs@.... If you are currently...
This is a special notice sent out to remind everyone of our next upcoming event: On Tuesday, November 11th, the Enterprise Group is meeting in Dulles, VA*....
Please dont post personal responses on this mailing list. ... From: Upender Nimbekar [mailto:upen_java@...] Sent: Friday, November 07, 2003 10:10 AM To:...
All right, JAXB saves me time, but I cannot figure out how to add a PI so when my output XMl files are marshalled, they contain this PI. I thought this would...
elf, Apparently you can't do this with JAXB directly, but you can try the following: 'The new version of JAXB can produce XML as SAX events. That is, you can...
David, Thanks for the feedback. It seems I may need change how the app works a little bit to be able to do this. I am almost tempted to add the PI after the...
Thanks David for your feedback. At the end I decided do some string manipulation instead of using an XMLWritter, although I would prefer to use JAXME for...