I've made a java application that manipulates a few matrices it gets as input, and then outputs some text. Currently the matrices are hardcoded in my application (for testing), but recompiling is quite silly for a new matrix.
So I'm looking for a config file format that would be suited for inputting matrices.
I know I can read ini files easily ( What is the easiest way to parse an INI file in Java?), but then parsing a thing like [ [ 1, 2, 3], [4, 5, 6] ] to a matrix would probably require annoying string manipulation.
Does anyone know of a nice method to read in these matrices?