What is a easy way to read specific element from msExel file into variable?
e.g. text.xls
+-----+-----+-----+-----+-----+
| A | B | C | D | E |
+-----+-----+-----+-----+-----+
| 1 | 2 | 3 | 4 | 5 |
+-----+-----+-----+-----+-----+
| 6 | 7 | 8 | 9 | 10 | <-
+-----+-----+-----+-----+-----+
How to read 10 into variable?
You would have to use an API such as Apache POI or JExcelApi. There are plenty of good examples available.