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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| public class essai {
private JFrame frame;
private static JTextField textLog;
private static JTextField textPass;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
essai window = new essai();
window.frame.setVisible(true);
File entryFile = new File("C:\\www.xml");
// cl1 essai = new cl1();
String logPass ="";
String userCherch = "ladjm";
// logPass = essai.recherche(userCherch, entryFile);
logPass = "lulu";
textLog.setText("Identifiant : "+logPass);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public essai() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
textLog = new JTextField();
frame.getContentPane().add(textLog, BorderLayout.NORTH);
textLog.setColumns(10);
textPass = new JTextField();
frame.getContentPane().add(textPass, BorderLayout.SOUTH);
textPass.setColumns(10);
}
} |