fileChooser.setApproveButtonMnemonic('o');
fileChooser.setFileFilter(new FileNameExtensionFilter("Fichier note", "note"));
if (fileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
try {
// On recupere le fichier et on l'ouvre dans un nouveau tab
note = new Note(fileChooser.getSelectedFile().getAbsolutePath());
if (note.isIntegre()) {
if (note.getSignePar().getLibelle() == null) {
String message = "Expéditeur inconnu, voulez vous l'enregistrer en tant qu'expéditeur de confiance et afficher votre note ?";
String result = (String) JOptionPane.showInputDialog(this, message, null, JOptionPane.WARNING_MESSAGE,
null, null, Certificat.getSender(Certificat.hexToX509Cert(note.getSignePar().getCertificat())));