Posted By:
ruowei_wu
Posted On:
Monday, April 15, 2002 07:16 AM
I run into an infinite loop while transforming xml file using jdk1.4's transformer. it doesn't happen before while I use xalan 2.1.0. The interesting thing is both jdk1.4 transformer and xalan 2.3.1 generate the same infinite loop. does anybody have similar error I got? I really appreciate if someone who can post his idea on this. Here is what I got: public String toString() { String result = "{"; result += "name="; result += name; result += "name="; result += name; result += "name="; result += name; result += "name="; result += name; result += "name="; result
More>>
I run into an infinite loop while transforming xml file using jdk1.4's transformer. it doesn't happen before while I use xalan 2.1.0. The interesting thing is both jdk1.4 transformer and xalan 2.3.1 generate the same infinite loop. does anybody have similar error I got? I really appreciate if someone who can post his idea on this.
Here is what I got:
public String toString()
{
String result = "{";
result += "name=";
result += name;
result += "name=";
result += name;
result += "name=";
result += name;
result += "name=";
result += name;
result += "name=";
result += name;
result += "name=";
result += name;
result += "name=";
result += name;
<<Less