Salut les totos,
Je dispose d'un code Java :
Code :
- import java.sql.*;
- import java.applet.*;
- import java.awt.*;
- public class centflux extends Applet
- {
- public static void main(String[] args)
- {
- Connection conn = null;
- Statement stmt = null;
- ResultSet rs = null;
- System.out.println("HAHA c UN TEST!!!!!!" );
- try
- {
- Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver" );
- String connectionString ="jdbc:sqlserver://x.x.x.x;database=xxx;user=xxx;password=xxx";
- conn = DriverManager.getConnection(connectionString);
- stmt = conn.createStatement();
- rs = stmt
- .executeQuery("SELECT * FROM test" );
- while (rs.next())
- {
- String test = rs.getString("numtest" )
- + " | " + rs.getString("nomtest" );
- System.out.println(test);
- }
- }
- catch (Exception e) {
- System.out.println(e.getMessage());
- e.printStackTrace();
- }
- finally {
- if (rs != null)
- try { rs.close(); } catch (Exception e) { }
- if (stmt != null)
- try { stmt.close(); } catch (Exception e) { }
- if (conn != null)
- try { conn.close(); } catch (Exception e) { }
- }
- }
- }
|
Puis d'une page HTML :
Code :
- <HTML>
- <HEAD>
- <TITLE>CENTRAL-FLUX</TITLE>
- </HEAD>
- <BODY>
- </BODY>
- </HTML>
|
Mon soucis est que :
Je souhaiterais que le resultat "System.out.println(test)" s'affiche sur ma page web et que le tout ne fasse qu'un seul code, comment dois je faire ?
Merci de votre aide et bonne journée !