I would like to parse a text file or a java property which contains text such as: "test\n123\t456" to the equivalent if it were written in String test = "test\n123\t456";
i.e. I want the bytes to be the same when the text is read from a file compared to compiled in a java class.
I hope this makes sense,
-- Steven