データを.csvファイルにエクスポートする必要があるが、ファイルをファイルシステムに保存しないという問題が発生します。代わりに、ブラウザーでファイルを開く必要があります。
.csvファイルにデータを書き込むために以下のコードを記述しました。
FileWriter myWriter = new FileWriter("output.csv");
myWriter.append(EmployeeCode);
myWriter.append(',');
myWriter.append(Band);
myWriter.append('\n');
response.setHeader("Content-Disposition", "attachment; filename=output.csv");
response.setContentType("application/ms-excel");
response.setCharacterEncoding("UTF-8");
.csvファイルを開くことはできますが、空です。私のデータはそこに入力されません。私が間違っていることを提案してください。