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

in my main class

  public static void main(String[] args) {
            CSVWriter writer = new CSVWriter(new FileWriter("D:\\myfilefile.csv"), '\t');
            recursiveLoop(writer, 10);
    }

public void function recursive(CSVWriter writer, int index){
if (index == 0){
  return;
}else{
  String[] entries ="TEST#LINE#".split("#");
  writer.writeNext(entries);
 index--;
 recursiveLoop(writer, index);
}

}

howeverwhen I open my file.csv, nothing is written ! What am I doing wrong ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Try to call writer.flush() at the end

share|improve this answer

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.