Pytanie : Dlaczego ściąganie csv kartoteka using java servlet?

I potrzebować the dane kartoteka od baza danych z csv format using java/servlet. I polubić the csv kartoteka gdy the ściąganie button.

Here z attahed the źródło kod, zadawalać pozwalać znać the kod musieć here.

Please korygować the źródło the kod tutaj. Chcieć być the zmiana chcieć tutaj?
Attachments:
csv servlet źródło code

Odpowiedź : Dlaczego ściąganie csv kartoteka using java servlet?

Próbować the następujący:
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
   ochraniać kawitacyjny doGet (HttpServletRequest prośba,
        HttpServletResponse odpowiedź) rzut ServletException, IOException {
        Smyczkowy connectionURL = "jdbc: mysql: //localhost/csv";
        Smyczkowy url = request.getParameter ("WEB_URL");
        Oświadczenie stmt = null;
        Podłączeniowy przeciw = null;

        próba {
            Smyczkowy filename = "SearchCases.csv";
            Class.forName ("com.mysql.jdbc. Kierowca") .newInstance ();
            przeciw = DriverManager.getConnection (connectionURL, "korzeń", "korzeń");
            stmt = con.createStatement ();

            Smyczkowy qry = "wybiórka * od user_managecase";
            ResultSet rst = stmt.executeQuery (qry);
            response.setContentType ("tekst/csv");
            response.setHeader ("Zadawalać-Usposobienie", "doczepianie; filename=" + filename);
	    resultSetToCsv (rst, response.getWriter ());

        } chwyt (Wyjątek e) {
            e.printStackTrace ();
        } w końcu {
            con.close ();
        }
    }
Inne rozwiązania  
 
programming4us programming4us