04.06.2008 | 22:12:22
immagine
Ing. Emanuele Scapin

Java, es4, esempio di importazione ed esportazione di XML
  •  

  • Esempio di metodo di esportazione con utilizzo di JFileChooser.

    1. public void EsportaXML() {  
    2.     // esporta su un file in formato XML  
    3.   int ret = jFileChooser.showSaveDialog(null);  
    4.   if (ret == JFileChooser.APPROVE_OPTION) {  
    5.     File file = jFileChooser.getSelectedFile();    
    6.     try {  
    7.         JAXBContext context1 = JAXBContext.newInstance(ListaStudenti.class);  
    8.         Marshaller marshaller1 = context1.createMarshaller();    
    9.         marshaller1.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);  
    10.   
    11.         marshaller1.marshal(lista, file);  
    12.         marshaller1.marshal(lista, System.out);  
    13.     }  
    14.     catch(Exception ex) {  
    15.         JOptionPane.showMessageDialog(null,   
    16.                 "errore esportazione file xml " + ex.getMessage(),   
    17.                 "file xml",   
    18.                 JOptionPane.ERROR_MESSAGE);  
    19.     }  
    20.   }           
    21. }  
  • Esempio di metodo di importazione con utilizzo di JFileChooser.

    1. public void ImportaXML() {  
    2.     // importa da file in formato XML  
    3.     int ret = jFileChooser.showOpenDialog(null);  
    4.     if (ret == JFileChooser.APPROVE_OPTION) {  
    5.         File file = jFileChooser.getSelectedFile();          
    6.         try {  
    7.             JAXBContext context1 = JAXBContext.newInstance(ListaStudenti.class);  
    8.             Unmarshaller unmar = context1.createUnmarshaller();  
    9.             lista = (ListaStudenti) unmar.unmarshal(file);  
    10.   
    11.             lstStudenti.removeAll();  
    12.             for(int i=0; i<lista.Dimensione(); i++) {     
    13.                 lstStudenti.add(lista.Ottieni(i).toString());  
    14.             }  
    15.         }  
    16.         catch(Exception ex) {  
    17.             JOptionPane.showMessageDialog(null,   
    18.                     "errore importazione file xml " + ex.getMessage(),   
    19.                     "file xml",   
    20.                     JOptionPane.ERROR_MESSAGE);  
    21.         }  
    22.     }      
    23. }    

© Emanuele Scapin 2009-2016

 

Valid HTML 4.01! Valid CSS!