Hi! I'm trying to open a local SVG file to work with it but only works when i use a URL.. how can i change? my code: ------------------this works------------------------ String parser = XMLResourceDescriptor.getXMLParserClassName(); SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser); String uri = "http://mywebpage.de/file.svg"; docSVG = f.createDocument(uri); ---------------this not works----------------------- String parser = XMLResourceDescriptor.getXMLParserClassName(); SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser); String uri = "C:\\file.svg"; docSVG = f.createDocument(uri); ----------------------- ----------------------- Thank's -- Xavier MurilloReceived on Tuesday, 29 June 2004 06:57:17 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Monday, 4 September 2006 18:11:26 GMT