Author
Java formulas in xml format
Vassili Vladimir
Ranch Hand
Joined: Mar 08, 2007
Posts: 1585
posted May 05, 2011 05:42:37
0
Hello,
I have mathematical formulas which will be used inside java code.
Is there a way or an API to express these formulas through XML and read it from code and execute it?
The reason for this is the formulas may change at any time.
Regards,
Vassili ...
SCJP 5.0, SCWCD 1.4, SCJA 1.0
Karthik Shiraly
Ranch Hand
Joined: Apr 04, 2009
Posts: 364
Here's one possible approach, using Java6 and its embedded Javascript script engine, to handle fairly complex math expressions without much DIY:
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
MathML is a standard way to represent mathematical formulas in XML.
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
As far as I know, the purpose of MathML is more to specify mathematical formulas so that they can be rendered in mathematical form. It's not really meant to specify formulas so that you can fill in values and "execute" (calculate) the result of the formula.
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
subject: Java formulas in xml format