bonjour,
j'ai changé un jframe en applet.
au passage l'initialisation du jTree ne marche plus.
j'initialise comme suit:
dans le programme jFrame, le tree affiche le contenu du fichier mat.xml, mais dans l'applet le tree n'affiche rien.Code:try { dbf = DocumentBuilderFactory.newInstance(); db = dbf.newDocumentBuilder(); java.net.URL url=getClass().getResource("/material/mat.xml"); doc = db.parse(url.openStream()); } catch (java.io.IOException e1) { JOptionPane.showMessageDialog(null,"Failed to read XML file:\n"+e1.getMessage()); return; } catch (SAXException e2) { JOptionPane.showMessageDialog(null,"Failed to parse XML file:\n"+e2.getMessage()); return; } catch (ParserConfigurationException e3) { JOptionPane.showMessageDialog(null,"Parser configuration exception:\n"+e3.getMessage()); return; }
comment faire?
merci
src.zip
-----