I've got a text file which has constants and its value defined in it in separate lines For e.g.
s, 2.1
v, 3.7
I get how to extract this in Java, but how do I store each value against it in a seperate variable.
For e.g. I need to use the value of s to computer something and value of v in a operate equation to calculate something ?