how to export a 2D table in java
Posted
by kate
on Stack Overflow
See other posts from Stack Overflow
or by kate
Published on 2010-05-28T09:33:47Z
Indexed on
2010/05/28
9:41 UTC
Read the original article
Hit count: 134
java
hello i would like to ask you about the 2D tables in java!!my code is this an i would like to make a system out in order t see the registrations in mytable citylink can anyone help me?
int i=0;
while(i<=citylink.length){
for(Xml polh_is:fetchsite.child("site").child("poleis").children("polh")){ //url
if((polh_is.string("name")=="")||(polh_is.content()==""))//attribute
error += "Error in polh: name is - " + polh_is.string("name") + " with url - " + polh_is.content() + " -.\n";
else
for(int j=0; j<citylink.length; j++){
citylink[j][0]=HtmlMethods.removeBreaks(polh_is.string("name"));
citylink[j][1]=HtmlMethods.removeBreaks(polh_is.string("with url -"+polh_is.content() +"-.\n"));
i++;
}
}
© Stack Overflow or respective owner