Disable scientific notation in debugger
Answered
This seems like it should be something very simple to do, but apparently it isn't. I'm working on a financial application that involves payments in millions of dollars. I would love to be able to see my values in the debugger as 820279000 instead of 8.20279E08. It would save me a great deal of time. Is this possible, or do I need to submit a feature request?
Please sign in to leave a comment.
You can configure your custom type renderers for the debugger to represent the values in the way you like: https://www.jetbrains.com/help/idea/debugger-data-type-renderers.html .
Awesome! Thank you. You just increased my productivity by 50%.
@... Can you help me with setup it?
Hi @... Please check the following discussion https://stackoverflow.com/questions/16098046/how-do-i-print-a-double-value-without-scientific-notation-using-java .