Hi We have an xml element of schema type double and since we are coding in java I have used the following api - String.valueOf(double) to convert a double to a string while creating the xml] and Double.parseDouble(String) to create a double out of that. Now there are some systems that seems to have problem with the scientific notation and they want the double value with only the decimal dot separator without haveing to deal with the E. Is there a way in java that I can acheive that without breaking the schema? Fro example when I convert
double 99999999.8888 to string I get 9.99999998888E7 in the xml. Can I get 99999999.8888 in xml instead through some java api? -- thanks Rishi
