• 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.

Previously on "Currency and JAVA"

Collapse

  • darmstadt
    replied
    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

    Leave a comment:


  • Moscow Mule
    replied
    Originally posted by darmstadt View Post
    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...
    IIRC our funny business in this area uses a windows system value.

    Dunno if that's any help to you or not...

    Leave a comment:


  • tim123
    replied
    Originally posted by darmstadt View Post
    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
    Surely it's:

    1.234,56?

    tim

    Leave a comment:


  • darmstadt
    replied
    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:


  • NickFitz
    replied
    Originally posted by DimPrawn View Post
    This is the sort of thing that's built-in in .NET but no doubt broken in Java.

    And, as I've pointed out, it's built-in in Java and has been for donkey's years

    Leave a comment:


  • DimPrawn
    replied
    This is the sort of thing that's built-in in .NET but no doubt broken in Java.

    Leave a comment:


  • NickFitz
    replied
    java.util.Locale and java.text.NumberFormat's getCurrencyInstance method?

    Code:
    NumberFormat de = NumberFormat.getCurrencyInstance(Locale.GERMAN);
    String deCash = de.format(1234.99);
    (I have no idea if this works - I just googled a bit...)

    Leave a comment:


  • kingshuk
    replied
    Originally posted by darmstadt View Post
    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...
    IBM JVM should support the env variables listed here - http://publib.boulder.ibm.com/infoce...r/env_jvm.html
    Setting LANG will probably work. But this will change your default locale. Not sure whether you want that.

    Leave a comment:


  • darmstadt
    replied
    Originally posted by TroubleAtMill View Post
    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
    Thanks for that, not too sure if that would fix this problem though. Just have to try or:

    -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:


  • TroubleAtMill
    replied
    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:


  • darmstadt
    started a topic Currency and JAVA

    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...

Working...
X