Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

Problem with Beans

  • 30-03-2004 08:28AM
    #1
    Closed Accounts Posts: 17,208 ✭✭✭✭


    I'm having a problem getting my class to work properly through java.beans.XMLEncoder.writeObject()

    What I want is for the XML file to contain both the class header and the data inside in the Vector. I've never really used Beans before, but the tutorials I have read basically say that as long as you implement Serializable you should have no bother...

    Yet all I get is the basic class header in the XML file. Can anybody tell me what I need to do to get this working?

    Thanks in advance!
    public class FileStructure implements Serializable
    {
      Vector fileStructure = new Vector();
    
      public void addDirectory(File root, boolean subfolders) throws
          InvalidDirectoryException
      {
        
      }
    
      public void addFiles(File[] target) throws InvalidFileException
      {
        
      }
    
      public void remove(File root) throws IOException
      {
        
      }
    
      public File[] describe()
      {
        
      }
    
      public DefaultMutableTreeNode describeAsTree()
      {
       
      }
    
      public long count()
      {
        
      }
    
      public class InvalidDirectoryException extends Exception
      {
        
      }
    
      public class InvalidFileException extends Exception
      {
        
      }
    }
    


Advertisement