Dear all, When I read an xml I see that all values are read as strings. It doesn’t matter if they are stings, integers, float, etc
I read a XML file using this RDFDataMgr.read(model, new FileInputStream(file), "http://myNs1#", Lang.RDFXML); And in the xml I have … <cp: class.attribute >650.000000</cp: class.attribute> … In the model when I browse I see … @cp:class.attribute "650.000000";… Is there a way to read the xml and parse the values in their proper form, e.g. float, string, …? Regards Chavdar
