public static void createDocumentXml(){
//����һƪ�ĵ�
Document document=DocumentHelper.createDocument();
//���һ��Ԫ��
Element root= document.addElement("Students");
//���ע��
root.addComment("学生信息");
root.addProcessingInstruction("target", "instruction");
//����Ԫ��
Element student=new BaseElement("student");
//ΪԪ���������
student.addAttribute("title", "XML Zone");
student.addAttribute("id", "001");
//����rootĿ¼����
root.add(student);
//����ѧ�����Ϣ
Element stuName=student.addElement("name");