Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

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