Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package projet_drone; import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Paragraph; import com.itextpdf.text.Rectangle; import com.itextpdf.text.pdf.PdfWriter; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; public class InterfaceFinal extends javax.swing.JFrame { static String nom; static String prenom; static int jour; static int mois; static int annee; static String fonction; static int ntelephone; static String pass1, pass2; static String typeP, typeS; static String ch; public InterfaceFinal() { initComponents(); nom = Inscrit.getnom(); prenom = Inscrit.getprenom(); jour = Inscrit.getjour(); mois = Inscrit.getmois(); annee = Inscrit.getannee(); fonction = Inscrit.getfoction(); ntelephone = Inscrit.getteleph(); typeP = NewResr.getTP(); typeS = NewResr.getTS(); jLabel5.setText(nom); jLabel6.setText(prenom); jLabel7.setText(typeP + " " + typeS); jLabel8.setText(Integer.toString(Inscrit.getperiod())); ch = Inscrit.informationPersonnel(); ch += NewResr.getDetail(); } static String getch() { return ch; } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); jToggleButton2 = new javax.swing.JToggleButton(); jLabel3 = new javax.swing.JLabel(); jLabel4 = new javax.swing.JLabel(); jLabel5 = new javax.swing.JLabel(); jLabel6 = new javax.swing.JLabel(); jLabel7 = new javax.swing.JLabel(); jLabel8 = new javax.swing.JLabel(); jToggleButton1 = new javax.swing.JToggleButton(); jLabel9 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setLocation(new java.awt.Point(300, 100)); jPanel1.setLayout(null); jLabel1.setText("Nom"); jPanel1.add(jLabel1); jLabel1.setBounds(30, 50, 50, 14); jLabel2.setText("Prenom"); jPanel1.add(jLabel2); jLabel2.setBounds(32, 80, 60, 14); jToggleButton2.setText("Save PDF"); jToggleButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jToggleButton2ActionPerformed(evt); } }); jPanel1.add(jToggleButton2); jToggleButton2.setBounds(250, 280, 100, 63); jLabel3.setText("Type :"); jPanel1.add(jLabel3); jLabel3.setBounds(32, 122, 60, 14); jLabel4.setText("Periode :"); jPanel1.add(jLabel4); jLabel4.setBounds(34, 166, 70, 14); jLabel5.setText("jLabel5"); jPanel1.add(jLabel5); jLabel5.setBounds(150, 50, 34, 14); jLabel6.setText("jLabel6"); jPanel1.add(jLabel6); jLabel6.setBounds(150, 80, 34, 14); jLabel7.setText("jLabel7"); jPanel1.add(jLabel7); jLabel7.setBounds(150, 120, 34, 14); jLabel8.setText("jLabel8"); jPanel1.add(jLabel8); jLabel8.setBounds(150, 160, 34, 14); jToggleButton1.setText("Home"); jToggleButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jToggleButton1ActionPerformed(evt); } }); jPanel1.add(jToggleButton1); jToggleButton1.setBounds(400, 280, 100, 60); jLabel9.setIcon(new javax.swing.ImageIcon( getClass().getResource("/5a9aa830f67f61494be4a027718f2ed3a4e2bc40_main_hero_image.jpg"))); // NOI18N jPanel1.add(jLabel9); jLabel9.setBounds(0, 0, 600, 470); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 602, javax.swing.GroupLayout.PREFERRED_SIZE)); layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent( jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 470, javax.swing.GroupLayout.PREFERRED_SIZE)); pack(); }// </editor-fold>//GEN-END:initComponents private void jToggleButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jToggleButton2ActionPerformed try { PDF(); System.out.println(ch); } catch (DocumentException ex) { Logger.getLogger(InterfaceFinal.class.getName()).log(Level.SEVERE, null, ex); } catch (FileNotFoundException ex) { Logger.getLogger(InterfaceFinal.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_jToggleButton2ActionPerformed private void jToggleButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jToggleButton1ActionPerformed this.dispose(); new interface1().setVisible(true); }//GEN-LAST:event_jToggleButton1ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(InterfaceFinal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(InterfaceFinal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(InterfaceFinal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(InterfaceFinal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new InterfaceFinal().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JLabel jLabel5; private javax.swing.JLabel jLabel6; private javax.swing.JLabel jLabel7; private javax.swing.JLabel jLabel8; private javax.swing.JLabel jLabel9; private javax.swing.JPanel jPanel1; private javax.swing.JToggleButton jToggleButton1; private javax.swing.JToggleButton jToggleButton2; // End of variables declaration//GEN-END:variables private void PDF() throws DocumentException, FileNotFoundException { // Dfinir la taille des page Rectangle pagesize = new Rectangle(516f, 1020f); Document document = new Document(pagesize, 36f, 72f, 18f, 18f); // Cration du fichier PDF PdfWriter.getInstance(document, new FileOutputStream("contrat.pdf")); // Ouvrir le fichier cr document.open(); // Ecrire dans le fichier PDF document.add(new Paragraph(ch)); // Fermer le document, ne pas oublier document.close(); } }