Well tried all variations:
-Duser.language=de
-Duser.country=DE
-Dfile.encoding=utf8
-Dclinet.encoding.override=UTF-8
and none worked. The way these J2EE applications work when using globalisation is a real pain. It all starts at the browser interface, down through the application into the system so trying to find exactly where the problem lies is a nightmare. Many thanks for all the suggestions
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reply to: Currency and JAVA
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "Currency and JAVA"
Collapse
-
IIRC our funny business in this area uses a windows system value.Originally posted by darmstadt View PostAll good suggestions but not quite where I'm coming from. I'm just trying to work out what parameter I should pass to the JVM to get it to display the correct currency format. The actual language and other characters (umlauts, Euro, etc.) are all being displayed correctly. In WebSphere there is the options to pass parameters to the JVM which I did with other servers to override the ISO character set with UTF-8 but this one looks slightly different. Will continue working on it, cheers...
Dunno if that's any help to you or not...
Leave a comment:
-
Surely it's:Originally posted by darmstadt View PostI thought I would quickly ask here before going too deep. I'm not a Java person and have a small problem with a system (this is WebSphere Portal running under Linux) where an application was deployed and for Germany the currency should look like:
1.234.56
1.234,56?
tim
Leave a comment:
-
All good suggestions but not quite where I'm coming from. I'm just trying to work out what parameter I should pass to the JVM to get it to display the correct currency format. The actual language and other characters (umlauts, Euro, etc.) are all being displayed correctly. In WebSphere there is the options to pass parameters to the JVM which I did with other servers to override the ISO character set with UTF-8 but this one looks slightly different. Will continue working on it, cheers...
Leave a comment:
-
This is the sort of thing that's built-in in .NET but no doubt broken in Java.
Leave a comment:
-
java.util.Locale and java.text.NumberFormat's getCurrencyInstance method?
(I have no idea if this works - I just googled a bit...)Code:NumberFormat de = NumberFormat.getCurrencyInstance(Locale.GERMAN); String deCash = de.format(1234.99);
Leave a comment:
-
IBM JVM should support the env variables listed here - http://publib.boulder.ibm.com/infoce...r/env_jvm.htmlOriginally posted by darmstadt View PostI thought I would quickly ask here before going too deep. I'm not a Java person and have a small problem with a system (this is WebSphere Portal running under Linux) where an application was deployed and for Germany the currency should look like:
1.234.56
but is showing:
1,234.56
I believe that somewhere there must be setting to change this to do with Java as on other systems it is okay (searching through settings on them now.) The only thing I can think of is that on one of the systems last week I changed the JVM to be UTF-8 deom ISO-8859-1 so that it would do all the ä, ö, ü, etc but I don't think that is what it is...
Setting LANG will probably work. But this will change your default locale. Not sure whether you want that.
Leave a comment:
-
Thanks for that, not too sure if that would fix this problem though. Just have to try or:Originally posted by TroubleAtMill View PostYou can provide the JVM with a default language. That is,
java -Duser.language=de <other options>
However (as I experienced this week) it may screw with your Oracle JDBC driver as it will try to load configuration that expects the DB server to be in that language. Stupid Oracle
-Duser.language=de -Duser.country=DE (and possibly) -Dclient.encoding.override=UTF-8
passed to the JVM, which is everything! BTW, using DB2 on zOS here which shouldn't cause any problems
Leave a comment:
-
You can provide the JVM with a default language. That is,
java -Duser.language=de <other options>
However (as I experienced this week) it may screw with your Oracle JDBC driver as it will try to load configuration that expects the DB server to be in that language. Stupid Oracle
Leave a comment:
-
Currency and JAVA
I thought I would quickly ask here before going too deep. I'm not a Java person and have a small problem with a system (this is WebSphere Portal running under Linux) where an application was deployed and for Germany the currency should look like:
1.234.56
but is showing:
1,234.56
I believe that somewhere there must be setting to change this to do with Java as on other systems it is okay (searching through settings on them now.) The only thing I can think of is that on one of the systems last week I changed the JVM to be UTF-8 deom ISO-8859-1 so that it would do all the ä, ö, ü, etc but I don't think that is what it is...Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- HMRC standstill agreements extended to 72 months: why the term's doubled, and what to check before signing Today 05:53
- Who owns the loans? Inside the mystery of the loan charge recall scandal Yesterday 06:20
- Umbrella company winding-up petitions in 2026: the practical guide for contractors Jul 29 05:29
- Payments on Account deadline: what contractors must do before July 31st — maybe for the final few times Jul 28 08:01
- Andy Burnham's first 100 days: five things contractors need from the new PM Jul 27 00:53
- Starmer vs Burnham on housing: What their rival plans mean for your contractor mortgage Jul 22 00:59
- Burnham's housing vision vs. Starmer's home-buying reforms: what it means for your contractor mortgage Jul 22 00:59
- In Khalil v Innovate Transport, a limited company contractor wasn’t a worker and was on £2.30 — not £230 Jul 21 07:58
- Andy Burnham is PM: 5 new IT policies set to shape UK tech and its contractors Jul 20 06:29
- Taxed on money I haven't earned yet? Bold move, HMRC Jul 17 08:36

Leave a comment: