throw new IllegalArgumentException("le fichier "+f.getAbsolutePath()+" ne peut pas etre lue (probleme de droit)");
}
try {
SAXParser parser = factory.newSAXParser();
SvgHandler handler = new SvgHandler();
System.out.println("debut parsing ....");
parser.parse(f, handler);
System.out.println("fin parsing ....");
svg= handler.getSvg();
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {