I use JAXB to create folder and files hierarchy
My model:
@XmlRootElement
public class Root {
    @XmlAttribute
    private String path;
    @XmlElement(name = "dir")
    private ArrayList<Dir> rootContentDirs = null;
    @XmlElement(name = "file")
    private ArrayList<FileObj> rootContentFiles = null;
    public void setRootContentDirs(ArrayList<Dir> rootContentDirs) {
        this.rootContentDirs = rootContentDirs;
    }
    public void setRootContentFiles(ArrayList<FileObj> rootContentFiles) {
        this.rootContentFiles = rootContentFiles;
    }
    public void setPath(String path) {
        this.path = path;
    }
 }
public class Dir {
    @XmlAttribute
    private String name;
    @XmlElement(name = "dir")
    private ArrayList dirs = null;
    @XmlElement(name = "file")
    private ArrayList files = null;
    public void setName(String name) {
        this.name = name;
    }
    public void setDirs(ArrayList dirs) {
        this.dirs = dirs;
    }
    public void setFiles(ArrayList files) {
        this.files = files;
    }
 }
public class FileObj{
   @XmlAttribute
   private String name;
   @XmlAttribute
   private long size;
   @XmlAttribute
   private String type;
   public void setName(String name) {
       this.name = name;
   }
   public void setSize(long size) {
       this.size = size;
   }
   public void setType(String type) {
       this.type = type;
   }
}
I want to make tree of dirs and files:
public class XmlByJaxb extends Generator {
private static final String JAXB_XML = "./jaxb.xml";
private static Root root = null;
@Override
public void output() throws IOException {
    JAXBContext context = null;
    Marshaller m = null;
    try {
        context = JAXBContext.newInstance(Root.class, Dir.class, FileObj.class);
        m = context.createMarshaller();
        m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
        m.marshal(root, new File(JAXB_XML));
    } catch (JAXBException e) {
    }
}
@Override
public void run() {
    ArrayList<FileObj> rootFiles = addFiles(dir);
    ArrayList<Dir> rootDirs = make(dir);
    root = new Root();
    root.setPath(dir.getPath());
    root.setRootContentFiles(rootFiles);
    root.setRootContentDirs(rootDirs);
/.../
}
But I hava strange "xsi:type" and "xmlns:xsi" in generated xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root path="/home/phlamey/IdeaProjects/FileUtillite">
<dir name="src">
    <dir xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="dir" name="test">
        <dir xsi:type="dir" name="java">
            /.../ 
So my question: what does this mean and how does remove this?
In your Dir class you are not specifying the type of your collection this is why JAXB is adding the xsi:type attributes.
You have:
@XmlElement(name = "dir")
private ArrayList dirs;
If your ArrayList is going to contain instances of Dir then you can do:
@XmlElement(name = "dir")
private ArrayList<Dir> dirs = null;
If for some reason you don't want to specify the type on the collection then you can do it in the @XmlElement annotation:
@XmlElement(name = "dir", type=Dir.class)
private ArrayList dirs = null;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With