Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created the csv file.The records are displaying row order.but i need coloumn order.

how to modify the code ?

for(int i = 0;i < maps.length;i++) {    
    Map<String, String> map = (Map<String, String>)maps[i];
    sep = "";
    for(int j = 0;j < labels.length;j++) {  
        String val = map.get(labels[i]);
        out.write(sep);
        out.write(""+val);
        sep = ",";
    }
    out.write(LINEFEED);
}
share|improve this question
1  
format the code, put it in a code block first. – C-x C-t Jul 6 '10 at 23:12

1 Answer

First of all, you should use new-style loops, they are much clearer and prettier:

for(Map<String, String> map : maps) {    
    sep = "";
    for(String label: labels){  
        out.write(sep);
        out.write(map.get(label));
        sep = ",";
    }
    out.write(LINEFEED);
}

then, you just need to switch inner and outer loops

for(String label: labels){  
    sep = "";
    for(Map<String, String> map : maps) {    
        out.write(sep);
        out.write(map.get(label));
        sep = ",";
    }
    out.write(LINEFEED);
}

that should switch from rows to columns

share|improve this answer
It is getting error, incompatible types for(Map<String, String> map : maps) { – Rose Jul 6 '10 at 23:40
OK, I was assuming that maps was an array of maps. If it isn't, maybe you should provide more code: what is maps and what is labels? – Sean Patrick Floyd Jul 7 '10 at 0:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.