当前页面: 开发资料首页 → J2EE 专题 → java&xml心得(三)
java&xml心得(三)
摘要: java&xml心得(三)
内容: 作者-- joinme
(续 java&xml心得(二) )
XMLBuilder.class 主要是把指定的document或node对象转换成规范的xml字符串。用的是ibm的xml4j解析器.代码如下:
package com.ceic.workflow.xml;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import com.ibm.xml.parsers.*;
/**
* Title: 有效XML 字符串生成工具
* Description: 有效XML 字符串生成工具
* Copyright: Copyright (c) 2003
* Company: 国电信息中心
* @author 张治中
* @version 1.0
* 有效XML 字符串生成工具
* 例如:
* XmlBuilder build=new XmlBuilder();
* Document doc=((Document)Class.forName("com.ibm.xml.dom.DocumentImpl").newInstance()) ;
* ..........
* build.printDOMTree(doc);
* String xmlString=build.getXmlResult();
* 再把xmlString用XmlOutput类去输出成xml文件.
*/
public class XmlBuilder
{
private String lineSeparator="\r";
private String xmlString="";
private int indentLevel=0;
protected static String STANDARD_INDENT=" ";
private String XmlHeader="<?xml version=\"1.0\" ?>";
private int currentlevel=0;
/**
* 生成XML字符串.
* @param node 要生成字符串的Document或其它Node.
*/
public void printDOMTree(Node node){
printDOMTree(node,indentLevel,false);
}
/**
* 生成XML字符串.
* @param node 要生成字符串的Document或其它Node.
* @param noTop 是否去除头尾,如果为Document对象去掉<?xml.../?>头
*/
public void printDOMTree(Node node,boolean noTop){
printDOMTree(node,indentLevel,noTop);
}
/**
* 生成XML字符串.
* @param node 要生成字符串的Document或其它Node.
* @param level 节点的深度.(中间变量)
* @param noTop 是否去除头尾,如果为Document对象去掉<?xml.../?>头
*/
private void printDOMTree(Node node,int level,boolean noTop)
{
int templevel=level;
int find=0;
short toptype=0;
String topvalue="";
int type = node.getNodeType();
switch (type)
{
// print the document element
case Node.DOCUMENT_NODE:
{
find++;
if(!noTop||find>1){
xmlString+=XmlHeader+lineSeparator;
}else{
toptype=Node.DOCUMENT_NODE;
}
printDOMTree(((Document)node).getDocumentElement(),templevel+1,false);
break;
}
// print element with attributes
case Node.ELEMENT_NODE:
{ find++;
if(!noTop||find>1){
currentlevel=templevel;
xmlString+=printIndent(templevel);
xmlString+=lineSeparator+"<";
xmlString+=node.getNodeName();
NamedNodeMap attrs = node.getAttributes();
for (int i = 0; i < attrs.getLength(); i++)
{
Node attr = attrs.item(i);
xmlString+=" " + attr.getNodeName() +"=\"" + attr.getNodeValue() +"\"";
}
xmlString+=">"+lineSeparator;
}
else{
toptype=Node.ELEMENT_NODE ;
topvalue=""+node.getNodeName()+">"+lineSeparator;
}
NodeList children = node.getChildNodes();
if (children != null)
{
int len = children.getLength();
for (int i = 0; i < len; i++)
printDOMTree(children.item(i),templevel+1,false);
}
break;
}
// handle entity reference nodes
case Node.ENTITY_REFERENCE_NODE:
{
find++;
xmlString+="&";
xmlString+=node.getNodeName();
xmlString+=";";
break;
}
// print cdata sections
case Node.CDATA_SECTION_NODE:
{
find++;
xmlString+=" xmlString+=node.getNodeValue();
xmlString+="]]>";
break;
}
// print text
case Node.TEXT_NODE:
{
find++;
// String temp=node.getNodeValue();
// if(!temp.equals(" ")&&!temp.equals("\n")&&!temp.equals("\r"))
xmlString+=node.getNodeValue();
break;
}
// print processing instruction
case Node.PROCESSING_INSTRUCTION_NODE:
{
find++;
xmlString+="<?";
xmlString+=node.getNodeName();
String data = node.getNodeValue();
{
xmlString+=" ";
xmlString+=data;
}
xmlString+="?>";
break;
}
}
if (type == Node.ELEMENT_NODE)
{
find++;
if(currentlevel!=templevel){
xmlString+=printIndent(templevel);
xmlString+=lineSeparator;
}
xmlString+="";
xmlString+=node.getNodeName();
xmlString+=">"+lineSeparator;
}
if(noTop&&toptype==Node.ELEMENT_NODE){
int len=xmlString.length() ;
int tlen=topvalue.length() ;
xmlString=xmlString.substring(0,len-tlen);
}
}
/**
* 生成行前的STANDARD_INDENT(一般指空格)
* @param num STANDARD_INDENT的个数
* @return String
*/
private String printIndent(int num){
String temp="";
if(num>0){
for(int i=0;i
temp+=STANDARD_INDENT;
}
}
return temp;
}
/**
* 设定行前的STANDARD_INDENT(一般指空格)
* @param indent STANDARD_INDENT的值
*/
public void setIndent(String indent){
STANDARD_INDENT=indent;
}
/**
* 获得已经生成的xml字符串.在printDOMTree(Node node)方法后有效
* @return String
*/
public String getXmlResult(){
return xmlString;
}
/**
* 设定最开始的深度级别(直接影响行前的STANDARD_INDENT(空格)数)
* @param level 级别数
*/
public void setBeginLevel(int level){
indentLevel=level;
}
/**
* 设定xml文件的xml头
* @param header xml文件xml头。例如:<?xml version=\"1.0\" ?>
*/
public void setXmlHeader(String header){
XmlHeader=header;
}
/**
* 设定换行符 默认为"\r\n"
* @param lineseparator 换行分割符,默认为"\r\n"
*/
public void setlineSeparator(String lineseparator){
lineSeparator=lineseparator;
}
}
XMLOutput.class 功能是用指定的string或InputStream生成文件(不一定是xml文件)。代码如下:
package com.ceic.workflow.xml ;
import org.w3c.dom.*;
import java.io.*;
import java.util.*;
/**
* Title: 有效XML 字符串生成xml文件的工具
* Description: 有效XML 字符串生成xml文件的工具
* Copyright: Copyright (c) 2003
* Company: 国电信息中心
* @author 张治中
* @version 1.0
*/
public class XmlOutput{
private String objectpath;
private String encoding="UTF8";
public XmlOutput(){
}
/**
* 构造器
* @param filepath 生成的目标xml文件位置.
*/
public XmlOutput(String filepath){
objectpath=filepath;
}
/**
* 设定生成的目标xml文件的位置
* @param filepath 生成的目标xml文件位置.
*/
public void setObjectPath(String filepath){
objectpath=filepath;
}
/**
* 设定生成xml文件的编码格式
* @param encod 生成xml文件的编码格式,默认为 UTF8
*/
public void setEncoding(String encod){
encoding=encod;
}
/**
* 根据指定的xmlstring生成xml文件.
* @param xmlstring 指定的xml字符串
*/
public void Output(String xmlstring){
if(!checkObject()) {
System.out.println("没有指定要写入的文件");
return;
}
try{
// StringBufferInputStream in=new StringBufferInputStream(xmlstring);
FileOutputStream out=new FileOutputStream(new File(objectpath));
java.io.Writer write=new java.io.OutputStreamWriter(out,encoding);
write.write(xmlstring);
write.close() ;
}catch(Exception ee){
System.out.println(ee.getMessage());
System.out.println("写文件出错");
}
}
/**
* 根据指定的输入流生成xml文件.
* @param in 指定的InputStream
*/
public void Output(InputStream in){
if(!checkObject()) {
System.out.println("没有指定要写入的文件");
return;
}
try{
StringBuffer temp=new StringBuffer();
byte[] tempbyte=new byte[1024];
while(in.read(tempbyte)!=-1){
temp.append(new String(temp));
}
in.close() ;
String result=temp.toString() ;
FileOutputStream out=new FileOutputStream(new File(objectpath));
java.io.Writer write=new java.io.OutputStreamWriter(out,encoding);
write.write(result);
write.close() ;
}catch(Exception eee){
System.out.println(eee.getMessage());
System.out.println("写文件出错");
}
}
/**
* 检查文件path是否为空
* @return boolean
*/
private boolean checkObject(){
if(objectpath!=null&&objectpath.length() >0) return true;
return false;
}
}
有了这些xml的操作工具后,下一步就是接着来进行实际的应用。在我以前的项目中(二次开发的),有个遗留问题就是tree型权限和tree型角色的交互(包括各自的维护)。当时在表现层是用的 jsp+applet实现哪个tree图(给applet传入一个xml格式的文件流)。文件格式如下:
其实就是一个比较规范的xml文档,在tree结构只有两层时比较容易就可以用jsp来out.println()出来。但是当结构边复杂时用jsp就不够了。在加上有权限在里面,问题就更复杂化了。在了解到了xml后及做了上面的一些工作后.决定用xml(通过递归方法生成tree型结构的xml)来实现。代码如下:
package com.ceic.tree;
import java.io.*;
import org.w3c.dom.*;
import java.util.*;
import com.ceic.workflow.xml.*;
import com.ceic.publicSource.*;
import com.ceic.ResultSets.*;
public class CreateTree {
private boolean Start=false;
private Result rs;
private XMLTool tool;
private Document doc;
private int BeginLevel=0;
private String indent=" ";
private String end="\r";
private String header="<?xml version=\"1.0\" ?>";
private String ParentTreeId="tree_id_p";
private String TreeId="tree_id";
private String defaultparent="0";
private String NodeName="node";
private int maxAttrs=20;
private int maxsize=20;
public int[] vec;
private int mark=0;
private String checkOne="label";
private String[] nodeAttrList;
private String colFlag="#";
private String[] nodeAttrValueList;
private String defaultFlag="@";
private Hashtable mapping=new Hashtable();
private Vector collist=new Vector();
private String rootName="zzz_test";
private boolean EnableMakeUp=false;
public CreateTree(){
try{
rs=ResultFactory.getResult("Vector");
rs.setConnType("jdbc");
String sql="select * from cm_tree";
rs.setSql(sql);
rs.Create() ;
}catch(Exception exec){
System.out.println("初始化无效,请通过setResult()设定数据源");
}
tool=XMLToolFactory.getXMLTool() ;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
init();
}
public void setParentTreeId(String parenttreeid){
if(parenttreeid!=null&&parenttreeid.length() >0) ParentTreeId=parenttreeid;
}
public void setTreeId(String treeid){
if(treeid!=null&&treeid.length() >0) TreeId=treeid;
}
public void setDefaultParent(String defaultp){
if(defaultp!=null&&defaultp.length() >0)
defaultparent=defaultp;
}
public void setMaxTreeLevel(int MaxSize){
if(MaxSize>0){
maxsize=MaxSize;
vec=null;
vec=new int[maxsize];
vec[0]=0;
}
}
public void setCheckOne(String CheckOne){
if(CheckOne!=null&&CheckOne.length() >0){
checkOne=CheckOne;
}
}
public void setHeader(String Header){
try{
if(Header!=null&&Header.length() >0){
header=Header;
tool.setHeader(header);
}
}catch(Exception e){
System.out.println("XMLTool不存在");
}
}
public void setDocument(Document docs){
if(docs!=null){
doc=docs;
tool.setDocumentSource(doc);
}
}
public void setXMLTool(XMLTool tools){
if(tools!=null){
tool=tools;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
}
}
public void setResult(Result tools){
if(tools!=null){
close() ;
rs=tools;
}
}
public void setmaxAttrs(int max){
if(max>0) maxAttrs=max;
}
public void setAttrList(String[] list){
if(list.length >0){
if(list.length >maxAttrs) maxAttrs=list.length ;
nodeAttrList=null;
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=null;
nodeAttrValueList=new String[maxAttrs];
collist.clear() ;
for(int i=0;i
nodeAttrList[i]=list[i];
collist.addElement(nodeAttrList[i]);
}
}
}
public void setValueList(String[] list){
if(list.length >0){
if(list.length >maxAttrs) maxAttrs=list.length ;
nodeAttrValueList=null;
nodeAttrValueList=new String[maxAttrs];
mapping.clear() ;
for(int i=0;i
nodeAttrValueList[i]=list[i];
mapping.put(collist.elementAt(i).toString() ,nodeAttrValueList[i]);
}
}
}
public void addMapping(String name,String value){
if(name!=null&&name.length() >0){
collist.addElement(name);
mapping.put(name,value);
}
}
public void setColFlage(String colflag){
if(colflag!=null&&colflag.length() >0){
colFlag =colflag;
}
}
public void setLineEnd(String lineend){
if(lineend!=null&&lineend.length() >0){
end=lineend;
}
}
public void setTreeNodeName(String nodename){
if(nodename!=null&&nodename.length() >0&&!nodename.equals(rootName)){
NodeName=nodename;
}
}
public Document getDocument(){
return doc;
}
public XMLTool getXMLTool(){
return tool;
}
public Result getResult(){
return rs;
}
public void setDefaultFlag(String flag){
if(flag!=null&&flag.length() >0){
defaultFlag=flag;
}
}
public CreateTree(Result rss,XMLTool xmltool){
try{
rs=rss;
tool=xmltool;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
init();
}catch(Exception eer){
eer.printStackTrace() ;
System.out.println("初始化失败");
}
}
private void init(){
try{
vec=new int[maxsize];
vec[0]=0;
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=new String[maxAttrs];
nodeAttrList[0]="label";
nodeAttrList[1]="icon";
nodeAttrList[2]="url";
nodeAttrList[3]="target";
nodeAttrList[4]="parentid";
nodeAttrList[5]="id";
nodeAttrValueList[0]=colFlag+"tree_name";
nodeAttrValueList[1]="/zdtadmin/images/Cluster_folder.gif";
nodeAttrValueList[2]=colFlag+"tree_address";
nodeAttrValueList[3]=colFlag+"tree_target"+defaultFlag+"_blank";
nodeAttrValueList[4]=colFlag+"tree_id_p";
nodeAttrValueList[5]=colFlag+"tree_id";
for(int i=0;i<6;i++){
collist.addElement(nodeAttrList[i]);
mapping.put(nodeAttrList[i],nodeAttrValueList[i]);
}
}catch(Exception eer){
eer.printStackTrace() ;
System.out.println("初始化失败");
}
}
public void CreateXML(){
Element root=tool.CreateElement(rootName);
doc.appendChild(root);
tool.setMarkSign(NodeName);
rs.first() ;
mark=0;
Start=false;
CreateMapTree(defaultparent,BeginLevel,root);
//tool.isEnableMakeUp();
}
public void CreateXML(String selfroot,int indexs){
Element root;
if(selfroot==null||selfroot.length()==0){
root=tool.CreateElement(rootName);
doc.appendChild(root);
}
else{
NodeList list=doc.getElementsByTagName(selfroot);
if(list.getLength() >0){
if(indexs>list.getLength()) indexs=0;
else
{
if(indexs>=1) indexs=indexs-1;
else indexs=0;
}
root=((Element)doc.getElementsByTagName(selfroot).item(indexs));
//rootName=selfroot;
}else{
root=tool.CreateElement(rootName);
doc.appendChild(root);
}
}
tool.setMarkSign(NodeName);
rs.first() ;
mark=0;
Start=false;
CreateMapTree(defaultparent,BeginLevel,root);
//tool.isEnableMakeUp();
}
public void isEnableMakeUp(){
EnableMakeUp=true;
tool.isEnableMakeUp() ;
}
public void isNotEnableMakeUp(){
EnableMakeUp=false;
tool.isNotEnableMakeUp() ;
}
public void CreateXmlFile(String filepath){
tool.Output(filepath,doc);
}
public void CreateXmlFile(String filepath,boolean noTop){
tool.Output(filepath,doc,noTop);
}
public void CreateSelfXmlFile(String filepath,boolean noTop){
tool.Output(filepath,doc.getElementsByTagName(rootName).item(0),noTop);
}
public void CreateXmlFile(String filepath,String nodeName,int indexs,boolean noTop){
NodeList list=doc.getElementsByTagName(nodeName);
if(list.getLength() >0){
if(indexs>list.getLength()) indexs=0;
else{
if(indexs>=1) indexs=indexs-1;
else indexs=0;
}
tool.Output(filepath,doc.getElementsByTagName(nodeName).item(indexs),noTop);
}
}
public void setEncoding(String encod){
tool.setEncoding(encod);
}
private void CreateMapTree(String type,int level,Node node){
try{
int templevel=level;
do{
if(rs.getString(ParentTreeId).equals(type)){
if(!EnableMakeUp){
Text tx=doc.createTextNode(end);
node.appendChild(tx);
CreateIndet(templevel,node);
}
String newtype=rs.getString(TreeId);
Element ele=tool.CreateElement(NodeName);
CreateTreeModel(ele,rs);
// if(CheckNode(ele,checkOne)){
node.appendChild(ele);
templevel++;
mark++;
vec[mark]=0;
rs.first() ;
CreateMapTree(newtype,templevel,ele);
// }
}
vec[mark]++;
}while(rs.next());
mark--;
move();
}catch(Exception e){
e.printStackTrace() ;
System.out.println("生成节点失败");
}
}
private void CreateTreeModel(Node node,Result rstemp){
try{
// ((Element)node).setAttribute(LABEL,rstemp.getString("tree_name"));
// ((Element)node).setAttribute(ICON,icon);
// ((Element)node).setAttribute(URL,rstemp.getString("tree_address"));
// if(rstemp.getString("tree_target")!=null&&rstemp.getString("tree_target").length() >0){
// ((Element)node).setAttribute(TARGET,rstemp.getString("tree_target"));
// }
String tempattr,tempvalue,tempcol,tempdefault,tempcolvalue;
for(int i=0;i
tempcol="";
tempdefault="";
tempcolvalue="";
tempattr=collist.elementAt(i).toString() ;
tempvalue=mapping.get(tempattr).toString() ;
if(tempattr!=null&&tempattr.length() >=0){
if(tempvalue.indexOf(colFlag)>=0){
String[] aaa=TheStrings.split(tempvalue,colFlag);
String header="";
String thevalue="";
if(aaa.length >1){
header=aaa[0];
thevalue=aaa[1];
}else{
thevalue=aaa[0];
}
String[] temps=TheStrings.split(thevalue,defaultFlag);
if(temps.length >1) tempdefault=temps[1];
tempcol=temps[0];
tempcolvalue=rstemp.getString(tempcol);
if(tempdefault.length() >0){
if(tempcolvalue.length() >0){
((Element)node).setAttribute(tempattr,header+tempcolvalue);
}else{
((Element)node).setAttribute(tempattr,tempdefault);
}
}else{
((Element)node).setAttribute(tempattr,header+tempcolvalue);
}
}else{
((Element)node).setAttribute(tempattr,tempvalue);
}
}
}
}catch(Exception ee){
ee.printStackTrace() ;
System.out.println("建立数据失败");
}
}
public void deleteNode(String nodename){
tool.delNode(NodeName,nodename,true);
}
private void CreateIndet(int level,Node node){
for(int i=0;i
Text tx=doc.createTextNode(indent);
node.appendChild(tx);
}
}
private void move(){
if(mark>=0){
rs.first() ;
for(int i=0;i
rs.next() ;
}
}
}
public void close(){
rs.close() ;
}
private boolean CheckNode(Node node,String oneType){
String label=((Element)node).getAttribute(oneType);
if(tool.setMark(oneType,label)){
return false;
}
return true;
}
public String getXmlString(boolean noTop){
XmlBuilder builder=new XmlBuilder();
builder.printDOMTree(doc,noTop);
return builder.getXmlResult() ;
}
public String getSelfXmlString(boolean noTop){
XmlBuilder builder=new XmlBuilder();
Node node=doc.getElementsByTagName(rootName).item(0);
builder.printDOMTree(node,noTop);
return builder.getXmlResult() ;
}
public Vector getParents(String id){
Vector vec=new Vector();
getParent(id,vec);
return vec;
}
private void getParent(String id,Vector vec){
tool.setMarkSign(NodeName);
tool.setMark(checkOne,id);
Node node=doc.getElementsByTagName(NodeName).item(tool.getIndex());
if(node.getParentNode() !=null){
String tempid=((Element)node.getParentNode()).getAttribute(checkOne);
if(tempid!=null&&tempid.length() >0){
if(tempid.equals(defaultparent)){
vec.addElement(defaultparent);
return;
}else{
vec.addElement(tempid);
getParent(tempid,vec);
}
}
}
}
public Vector getSons(String id){
Vector vec=new Vector();
getSon(id,vec);
return vec;
}
private void getSon(String id,Vector vec){
tool.setMarkSign(NodeName);
tool.setMark(checkOne ,id);
Node node=doc.getElementsByTagName(NodeName).item(tool.getIndex());
NodeList list= node.getChildNodes() ;
if(list.getLength() >0){
String tempid;
for(int i=0;i
if(list.item(i).getNodeType()==Node.ELEMENT_NODE){
tempid=((Element)list.item(i)).getAttribute(checkOne);
if(tempid!=null&&tempid.length() >0){
vec.addElement(tempid);
getSon(tempid,vec);
}
}
}
}
}
//
//public static void main(String[] a){
// String[] name={"icon","label","url","target","id","parentid"};
//String[] value={"/zdtadmin/images/Cluster_folder.gif","#tree_name","#tree_address","#tree_target@mainFrame","#tree_id","#tree_id_p"};
//CreateTree create=new CreateTree();
//XMLTool tool=XMLToolFactory.getXMLTool() ;
//Result rs=ResultFactory.getResult("Vector");
//rs.setConnType("jdbc");
//rs.setSql("select * from cm_tree where tree_id in(3,44,1,32,29) and tree_enable='1' order by tree_id");
//rs.Create() ;
//create.setResult(rs);
//create.setXMLTool(tool);
//create.isEnableMakeUp() ;
//create.setAttrList(name);
//create.setValueList(value);
//create.setCheckOne("id");
//create.setDefaultParent("0");
//create.setTreeId("tree_id");
//create.setParentTreeId("tree_id_p");
//create.setTreeNodeName("node");
//create.setEncoding("GBK");
//create.CreateXML();
//Vector vec=create.getParents("30");
//for(int i=0;i
// System.out.println(vec.elementAt(i));
//}
//create.deleteNode("id");
//create.deleteNode("parentid");
//create.CreateSelfXmlFile("d:/tomcat/webapps/test_self.xml",true);
//create.close() ;
//
//
//
//}
}
main()是 实例。private Result rs;是自定义记录集容器( Vector装所有记录,Vector中对象hashTable,hashTable中为字段名和字段值,还有一个字段名列表Vector,可能有什么安全隐患,因为我自己对Vector,hashTable不是很了解,希望高手指点).通过这种xml的解决方法,就很好解决了tree图显示,并解决了tree结构中的结构编辑(主要好处是保证tree结构的完整性,例如父节点休眠,所有子节点也休眠,激活子节点必须保证父节点已经被激活。),如果没有xml文档结构,这些操作将是很复杂的递归算法,并且会频繁的操作数据库。
最后一个例子:数据库数据和xml文件同步。
代码如下:
package com.ceic.tree;
import com.ceic.ConnPool.*;
import com.ceic.ResultSets.*;
import com.ceic.publicSource.*;
import java.util.*;
import com.ceic.workflow.xml.*;
import org.w3c.dom.*;
/**
*
Title:
*
Description:
*
Copyright: Copyright (c) 2003
*
Company:
* @author unascribed
* @version 1.0
*/
public class TableToXml {
private boolean Start=false;
private Result rs;
private XMLTool tool;
private Document doc;
private int BeginLevel=0;
private String indent=" ";
private String end="\r";
private String header="<?xml version=\"1.0\" ?>";
private int maxAttrs=20;
private int mark=0;
private String checkOne="label";
private String[] nodeAttrList;
private String colFlag="#";
private String[] nodeAttrValueList;
private String defaultFlag="@";
private Hashtable mapping=new Hashtable();
private Vector collist=new Vector();
private String rootName="table";
private String NodeName="col";
private boolean EnableMakeUp=false;
private int tempindex=0;
private void init(){
try{
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=new String[maxAttrs];
nodeAttrList[0]="label";
nodeAttrList[1]="icon";
nodeAttrList[2]="url";
nodeAttrList[3]="target";
nodeAttrList[4]="parentid";
nodeAttrList[5]="id";
nodeAttrValueList[0]=colFlag+"tree_name";
nodeAttrValueList[1]="/zdtadmin/images/Cluster_folder.gif";
nodeAttrValueList[2]=colFlag+"tree_address";
nodeAttrValueList[3]=colFlag+"tree_target"+defaultFlag+"_blank";
nodeAttrValueList[4]=colFlag+"tree_id_p";
nodeAttrValueList[5]=colFlag+"tree_id";
for(int i=0;i<6;i++){
collist.addElement(nodeAttrList[i]);
mapping.put(nodeAttrList[i],nodeAttrValueList[i]);
}
}catch(Exception eer){
eer.printStackTrace() ;
System.out.println("初始化失败");
}
}
public TableToXml() {
tool=XMLToolFactory.getXMLTool() ;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
init();
}
public TableToXml(Result rs) {
setResult(rs);
tool=XMLToolFactory.getXMLTool() ;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
init();
}
public TableToXml(Result rs,XMLTool toolss) {
setResult(rs);
setXMLTool(toolss);
init();
}
public void setCheckOne(String CheckOne){
if(CheckOne!=null&&CheckOne.length() >0){
checkOne=CheckOne;
}
}
public void setHeader(String Header){
try{
if(Header!=null&&Header.length() >0){
header=Header;
tool.setHeader(header);
}
}catch(Exception e){
System.out.println("XMLTool不存在");
}
}
public void setDocument(Document docs){
if(docs!=null){
doc=docs;
tool.setDocumentSource(doc);
}
}
public void setXMLTool(XMLTool tools){
if(tools!=null){
tool=tools;
doc=tool.CreateDocument() ;
tool.setDocumentSource(doc);
}
}
public void setResult(Result tools){
if(tools!=null){
close() ;
rs=tools;
}
}
public void setmaxAttrs(int max){
if(max>0) maxAttrs=max;
}
public void setAttrList(String[] list){
if(list.length >0){
if(list.length >maxAttrs) maxAttrs=list.length ;
nodeAttrList=null;
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=null;
nodeAttrValueList=new String[maxAttrs];
collist.clear() ;
for(int i=0;i
nodeAttrList[i]=list[i];
collist.addElement(nodeAttrList[i]);
}
}
}
public void setValueList(String[] list){
if(list.length >0){
if(list.length >maxAttrs) maxAttrs=list.length ;
nodeAttrValueList=null;
nodeAttrValueList=new String[maxAttrs];
mapping.clear() ;
for(int i=0;i
nodeAttrValueList[i]=list[i];
mapping.put(collist.elementAt(i).toString() ,nodeAttrValueList[i]);
}
}
}
public void addMapping(String name,String value){
if(name!=null&&name.length() >0){
collist.addElement(name);
mapping.put(name,value);
}
}
public void setColFlage(String colflag){
if(colflag!=null&&colflag.length() >0){
colFlag =colflag;
}
}
public void setLineEnd(String lineend){
if(lineend!=null&&lineend.length() >0){
end=lineend;
}
}
public void setTreeNodeName(String nodename){
if(nodename!=null&&nodename.length() >0&&!nodename.equals(rootName)){
NodeName=nodename;
}
}
public Document getDocument(){
return doc;
}
public XMLTool getXMLTool(){
return tool;
}
public Result getResult(){
return rs;
}
public void setDefaultFlag(String flag){
if(flag!=null&&flag.length() >0){
defaultFlag=flag;
}
}
public void isEnableMakeUp(){
EnableMakeUp=true;
tool.isEnableMakeUp() ;
}
public void isNotEnableMakeUp(){
EnableMakeUp=false;
tool.isNotEnableMakeUp() ;
}
public void CreateXmlFile(String filepath){
tool.Output(filepath,doc);
}
public void CreateXmlFile(String filepath,boolean noTop){
tool.Output(filepath,doc,noTop);
}
public void CreateSelfXmlFile(String filepath,boolean noTop){
tool.Output(filepath,doc.getElementsByTagName(rootName).item(0),noTop);
}
public void CreateXmlFile(String filepath,String nodeName,int indexs,boolean noTop){
NodeList list=doc.getElementsByTagName(nodeName);
if(list.getLength() >0){
if(indexs>list.getLength()) indexs=0;
else{
if(indexs>=1) indexs=indexs-1;
else indexs=0;
}
tool.Output(filepath,doc.getElementsByTagName(nodeName).item(indexs),noTop);
}
}
public void setEncoding(String encod){
tool.setEncoding(encod);
}
public void setRootAttr(String name,String value){
try{
if(name!=null&&name.length() >0) ((Element)doc.getElementsByTagName(rootName).item(tempindex)).setAttribute(name,value);
}catch(Exception e){
System.out.println("还没有建立Document对象或root element对象"+e.getMessage());
}
}
public void CreateXML(boolean colListAuto,boolean checkone){
Element root=tool.CreateElement(rootName);
doc.appendChild(root);
tool.setMarkSign(NodeName);
rs.first() ;
if(colListAuto){
Vector vec=(Vector)rs.getMetaData() ;
if(vec.size() >this.maxAttrs ) {
maxAttrs=vec.size() ;
nodeAttrList=null;
nodeAttrValueList=null;
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=new String[maxAttrs];
}
if(collist!=null) {collist.removeAllElements() ;collist .clear() ;}
if(mapping!=null) {mapping .clear() ;}
for(int k=0;k
nodeAttrList[k]=vec.elementAt(k).toString() ;
nodeAttrValueList[k]=colFlag+nodeAttrList[k];
collist.addElement(nodeAttrList[k]);
mapping.put(nodeAttrList[k],nodeAttrValueList[k]);
}
}
mark=0;
Start=false;
CreateMapTree(BeginLevel,root,checkone);
//tool.isEnableMakeUp();
}
public void CreateXML(String selfroot,int indexs,boolean colListAuto,boolean checkone){
Element root;
if(selfroot==null||selfroot.length()==0){
root=tool.CreateElement(rootName);
doc.appendChild(root);
}
else{
NodeList list=doc.getElementsByTagName(selfroot);
if(list.getLength() >0){
if(indexs>list.getLength()) indexs=0;
else
{
if(indexs>=1) indexs=indexs-1;
else indexs=0;
}
root=((Element)doc.getElementsByTagName(selfroot).item(indexs));
rootName=selfroot;
tempindex=indexs;
}else{
root=tool.CreateElement(rootName);
doc.appendChild(root);
}
}
tool.setMarkSign(NodeName);
rs.first() ;
if(colListAuto){
Vector vec=(Vector)rs.getMetaData() ;
if(vec.size() >this.maxAttrs ) {
maxAttrs=vec.size() ;
nodeAttrList=null;
nodeAttrValueList=null;
nodeAttrList=new String[maxAttrs];
nodeAttrValueList=new String[maxAttrs];
}
if(collist!=null) {collist.removeAllElements() ;collist .clear() ;}
if(mapping!=null) {mapping .clear() ;}
for(int k=0;k
nodeAttrList[k]=vec.elementAt(k).toString() ;
nodeAttrValueList[k]=colFlag+nodeAttrList[k];
collist.addElement(nodeAttrList[k]);
mapping.put(nodeAttrList[k],nodeAttrValueList[k]);
}
}
mark=0;
Start=false;
CreateMapTree(BeginLevel,root,checkone);
//tool.isEnableMakeUp();
}
private void CreateMapTree(int level,Node node,boolean checkone){
try{
int templevel=level;
do{
Element ele=tool.CreateElement(NodeName ) ;
CreateTreeModel(ele,rs);
if(CheckNode(ele,checkOne)){
if(!EnableMakeUp){
Text tx=doc.createTextNode(end);
node.appendChild(tx);
CreateIndet(templevel,node);
}
node.appendChild(ele);
}
}while(rs.next() );
}catch(Exception e){
e.printStackTrace() ;
System.out.println("生成节点失败");
}
}
private void CreateTreeModel(Node node,Result rstemp){
try{
// ((Element)node).setAttribute(LABEL,rstemp.getString("tree_name"));
// ((Element)node).setAttribute(ICON,icon);
// ((Element)node).setAttribute(URL,rstemp.getString("tree_address"));
// if(rstemp.getString("tree_target")!=null&&rstemp.getString("tree_target").length() >0){
// ((Element)node).setAttribute(TARGET,rstemp.getString("tree_target"));
// }
String tempattr,tempvalue,tempcol,tempdefault,tempcolvalue;
for(int i=0;i
tempcol="";
tempdefault="";
tempcolvalue="";
tempattr=collist.elementAt(i).toString() ;
tempvalue=mapping.get(tempattr).toString() ;
if(tempattr!=null&&tempattr.length() >=0){
if(tempvalue.indexOf(colFlag)>=0){
String[] aaa=TheStrings.split(tempvalue,colFlag);
String header="";
String thevalue="";
if(aaa.length >1){
header=aaa[0];
thevalue=aaa[1];
}else{
thevalue=aaa[0];
}
String[] temps=TheStrings.split(thevalue,defaultFlag);
if(temps.length >1) tempdefault=temps[1];
tempcol=temps[0];
tempcolvalue=rstemp.getString(tempcol);
if(tempdefault.length() >0){
if(tempcolvalue.length() >0){
((Element)node).setAttribute(tempattr,header+tempcolvalue);
}else{
((Element)node).setAttribute(tempattr,tempdefault);
}
}else{
((Element)node).setAttribute(tempattr,header+tempcolvalue);
}
}else{
((Element)node).setAttribute(tempattr,tempvalue);
}
}
}
}catch(Exception ee){
ee.printStackTrace() ;
System.out.println("建立数据失败,可能的原因是指定的节点值的列表中的元素中用到了不能获取的字段。");
}
}
public void deleteNode(String nodename){
tool.delNode(NodeName,nodename,true);
}
private void CreateIndet(int level,Node node){
for(int i=0;i
Text tx=doc.createTextNode(indent);
node.appendChild(tx);
}
}
public void close(){
if(rs!=null) rs.close() ;
}
private boolean CheckNode(Node node,String oneType){
String label=((Element)node).getAttribute(oneType);
if(tool.setMark(oneType,label)){
return false;
}
return true;
}
public String getXmlString(boolean noTop){
XmlBuilder builder=new XmlBuilder();
builder.printDOMTree(doc,noTop);
return builder.getXmlResult() ;
}
public static void main(String args[]){
String[] name={"label","url","target","id","parentid"};
String[] value={"#tree_name","#tree_address@/zdtadmin/default.jsp","#tree_target@_blank","#tree_id","#tree_id_p"};//#开头表示读取指定的字段名的值,@后面跟的是#字段名读取没有值或为null时的默认值 ,可以做简单的组合。比如: "login.jsp?id=#tree_name@1001"
Result rs=ResultFactory.getResult("Vector");
rs.setConnType("jdbc");
rs.setSql("select * from cm_tree where tree_enable='1'");
rs.Create() ;
TableToXml ttx=new TableToXml(rs);
ttx.setAttrList(name);
ttx.setValueList(value);
// ttx.setEncoding("GBK");
ttx.setHeader("<?xml version=\"1.0\" ?>");
ttx.CreateXML(false,false);//第一个参数是是否用sql中全部的字段,否则用指定的字段和值的列表。第2个参数指
//是否检查唯一性。通过ttx.setCheckOne(String str) 设定唯一字段.
ttx.setRootAttr("name","cm_tree");
ttx.CreateXmlFile("d:\\xmltest\\example\\ttx2.xml");
ttx.close() ;
System.out.println(ttx.getXmlString(true));
}
}
其中的Result同上。不过生成的xml中把字段名都当作attribute来处理(不想太复杂)。
以上是我在接触xml后对xml的理解和实践。用的是最笨的方法(手工操作xml),写出来就是希望能从高手的意见中学到东西。如果有机会,我下一次会把xml和xslt结合的实践例子拿出来和大家一起研究。^_^
转载请注明出处与作者.
Java, java, J2SE, j2se, J2EE, j2ee, J2ME, j2me, ejb, ejb3, JBOSS, jboss, spring, hibernate, jdo, struts, webwork, ajax, AJAX, mysql, MySQL, Oracle, Weblogic, Websphere, scjp, scjd, scwcd
作者--
↑返回目录
前一篇:
如何用JDO开发数据库应用
后一篇:
java&xml心得(二)