IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Java Discussion :

Excel généré par une application java stocke les nombre sous forme de texte


Sujet :

Java

  1. #1
    Candidat au Club
    Femme Profil pro
    Inscrit en
    Juin 2011
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme

    Informations forums :
    Inscription : Juin 2011
    Messages : 8
    Points : 2
    Points
    2
    Par défaut Excel généré par une application java stocke les nombre sous forme de texte
    Bonjour,
    SVP, j'ai besoin de votre aide car j'ai tenté plusieurs fois à trouver une solution pendant mes recherches..je me suis bloquée.
    Alors j'ai une application java desktop (spring) pour la saisie du tonnage qui contient plusieurs champ , date,heure, texte , des nombre etc...
    aprés avoir rempli ces champ je les valide ,puis je les enregistre dans une base sqlite , dans cette application je récupére mes données dans un jtable pour les exporter en excel.
    alors le probléme que je veux poser c'est quand j'exporte le fichier excel ,les données sont en format standard ,par exemple si j'ai une colonne qui contient le poids du tonnage qui est de type double ,dans excel elle est de type texte alors je ne peux pas traiter la somme de ce dernier , j'ai trouver une fonction qui me convertit la colonne en nombre ,ça a réussit ,les données sont de type nombre,mais j'ai toujours un message qui me dit " Nombre stocké sous forme de texte."
    Merci de me trouver une solution car je suis bloquée et j'espère que quelqu'un m'aide.

  2. #2
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    Si tu commencait par mettre le code que tu utilise pour générer ton excel.

  3. #3
    Candidat au Club
    Femme Profil pro
    Inscrit en
    Juin 2011
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme

    Informations forums :
    Inscription : Juin 2011
    Messages : 8
    Points : 2
    Points
    2
    Par défaut
    Merci Tchize pour votre réponse

    Alors voici le code pour générer l'excel ainsi que pour changer les types de chaque colonne :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
     
     
    try {
               DataOutputStream out= new DataOutputStream(new FileOutputStream(file));
               WritableWorkbook w= Workbook.createWorkbook(out);
     
     
               for(int index=0;index<tabl.size();index++)
               {  
     
     
     
                   JTable table=tabl.get(index);
     
                  WritableSheet s=w.createSheet(nom_file.get(index), 0);
     
                     for (int a = 0; a < table.getColumnCount(); a++) {
                    Label column = new Label(a, 0, table.getColumnName(a));
                    s.addCell(column);
     
                     }
                      for (int a = 0; a < table.getColumnCount(); a++) {
                    Label column = new Label(a, 0, table.getColumnName(a));
                    s.addCell(column);
                    }
                  for(int i=0;i<table.getColumnCount();i++)
                  {
                  for(int j=0;j<table.getRowCount();j++){
     
                  Object  object=table.getValueAt(j, i);
                  s.addCell(new Label(i,j+1,String.valueOf(object)));
     
     
     
                       for(int x=0;x<table.getColumnCount();x++)
                 {
                      Cell =s.getColumnView(x);
                      Cell.setAutosize(true);
                      s.setColumnView(x, Cell);
        // date     
              WritableCell cell  = s.getWritableCell(0,j+1);
             if (! (cell.getType() == CellType.DATE))
             {
     
              CellFormat cf = new WritableCellFormat  (DateFormats.FORMAT1);
            cell.setCellFormat(cf);
             }
     
     
     
              WritableCell cell2 = s.getWritableCell(i,0);
             WritableFont bold = new WritableFont(WritableFont.ARIAL, 
                                                  WritableFont.DEFAULT_POINT_SIZE, 
                                                  WritableFont.BOLD);
             CellFormat cf = new WritableCellFormat(bold);
             cell2.setCellFormat(cf);
     
              WritableCell c = s.getWritableCell(i,0);
            WritableCellFormat newFormat = new WritableCellFormat(c.getCellFormat());
             newFormat.setBackground(Colour.BRIGHT_GREEN);
             c.setCellFormat(newFormat);
     
             WritableCell tmp2 = (WritableCell) s.getWritableCell(5, j+1);
              if (! (cell.getType() == CellType.NUMBER))
              {
                  //changer son type
               WritableCellFormat nouvelleFormat = new WritableCellFormat(NumberFormats.INTEGER);
              tmp2.setCellFormat(nouvelleFormat);
              }
     
     
             WritableCell tmp1 = (WritableCell) s.getWritableCell(6, j+1);
              if (! (cell.getType() == CellType.NUMBER))
              {
                  //changer son type
               WritableCellFormat nouvelleFormat = new WritableCellFormat(NumberFormats.INTEGER);
              tmp1.setCellFormat(nouvelleFormat);
              }
     
     
             WritableCell tmp0 = (WritableCell) s.getWritableCell(7, j+1);
              if (! (cell.getType() == CellType.NUMBER))
              {
                  //changer son type
               WritableCellFormat nouvelleFormat = new WritableCellFormat(NumberFormats.FLOAT);
              tmp0.setCellFormat(nouvelleFormat);
              }
     
            //recuperer la valeur de la colonne 8
             WritableCell tmp = (WritableCell) s.getWritableCell(8, j+1);
              if (! (cell.getType() == CellType.NUMBER))
              {
                  //changer son type
               WritableCellFormat nouvelleFormat = new WritableCellFormat(NumberFormats.FLOAT);
              tmp.setCellFormat(nouvelleFormat);
              }

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
      FileSystemView vueSysteme = FileSystemView.getFileSystemView(); 
            File defaut = vueSysteme.getDefaultDirectory(); 
            File home = vueSysteme.getHomeDirectory(); 
            FileNameExtensionFilter filter= new FileNameExtensionFilter("Archive",".xls");
              JFileChooser fc = new JFileChooser(home);
           fc.setFileFilter(filter);
     
     
           fc.setDialogTitle("Archiver le document");
           fc.setMultiSelectionEnabled(false);
           fc.setAcceptAllFileFilterUsed(false);
                    int option = fc.showSaveDialog(null);
                    if(option == JFileChooser.APPROVE_OPTION){
     
                try {
                    List<JTable> tb=new ArrayList<>();
                    List<String>nom= new ArrayList<>();
                    tb.add(jTableUser);
                    nom.add("GeoRed");
     
     
     
                    String file = fc.getSelectedFile().toString().concat(".xls");
                    //String path = fc.getSelectedFile().getParentFile().getPath();
     
     
     
     
                    Exporter ec= new Exporter(new File(file),tb,nom);
                    if(ec.export())
                    {
     
     
                       // JOptionPane.showMessageDialog(this,"exportation réussi");
                    }
                } catch (Exception ex) {
                    Logger.getLogger(ExcelExport.class.getName()).log(Level.SEVERE, null, ex);
                }
    }

  4. #4
    Candidat au Club
    Femme Profil pro
    Inscrit en
    Juin 2011
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme

    Informations forums :
    Inscription : Juin 2011
    Messages : 8
    Points : 2
    Points
    2
    Par défaut
    j'ai pu résoudre le probléme c'est que j'insérais les cellule en Label , mais ca doit être un Number pour les nombre , DateTime pour les date ...
    maintenant je coince dans l'extraction des heures dans excel . ca m'affiche 01/01/1970 13:24:00 , alors que moi je ne veux que 13:24:00 Voici le Code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    52
    53
     
     
     for(int i=0;i<table.getColumnCount();i++)
                  {
                  for(int j=0;j<table.getRowCount();j++){
                      if(i==0 )
                  {  
     
     
                       SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
                      java.util.Date date =( java.util.Date )(formatter.parse(table.getValueAt(j, 0).toString()));
                       CellFormat cf = new WritableCellFormat  (DateFormats.FORMAT1); 
                       DateTime dateCell = new DateTime(0, j+1, date,cf); 
                      s.addCell(dateCell);
     
                  }    else if(i==1)
                  {
                      //c'est  la ou je coince :p
     
                      final DateFormat valueFormatDate = new DateFormat( "HH:mm" );
                       valueFormatDate.getDateFormat().setTimeZone( TimeZone.getTimeZone( "GMT" ) );
        final WritableCellFormat formatDate = new WritableCellFormat( valueFormatDate );
         SimpleDateFormat formatter = new SimpleDateFormat("HH:mm");
        DateTime dt=new DateTime( 1, j+1,( java.util.Date )(formatter.parse(table.getValueAt(j, 1).toString())) ,formatDate, DateTime.GMT );
             s.addCell(dt);        
     
     
                  }
     
                  else if(i==2)
                  {
     
                      final DateFormat valueFormatDate = new DateFormat( "HH:mm" );
                       valueFormatDate.getDateFormat().setTimeZone( TimeZone.getTimeZone( "GMT" ) );
        final WritableCellFormat formatDate = new WritableCellFormat( valueFormatDate );
         SimpleDateFormat formatter = new SimpleDateFormat("HH:mm");
        DateTime dt=new DateTime( 2, j+1,( java.util.Date )(formatter.parse(table.getValueAt(j, 2).toString())) , formatDate, DateTime.GMT );
             s.addCell(dt);        
     
     
                  }
     
     
                      else if(i==3 ||( i>=5 && i<=8 ))
                  {
                  Object  object=table.getValueAt(j, i);
     
                  s.addCell(new Number(i,j+1,Double.parseDouble(String.valueOf(object))));
                  }  else 
                  {
                      Object  object=table.getValueAt(j, i);
                  s.addCell(new Label(i,j+1,String.valueOf(object)));
                  }

  5. #5
    Expert éminent sénior
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Points : 48 804
    Points
    48 804
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
                    HSSFCellStyle style = my_workbook.createCellStyle();
                    style.setDataFormat(HSSFDataFormat.getBuiltinFormat("h:mm:ss"));     
     
    //...
                    cell.setCellStyle(style);

  6. #6
    Candidat au Club
    Femme Profil pro
    Inscrit en
    Juin 2011
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Femme

    Informations forums :
    Inscription : Juin 2011
    Messages : 8
    Points : 2
    Points
    2
    Par défaut
    Est -ce qu'il ya une autre solution en jExcel API , parce que je travaille avec .

Discussions similaires

  1. [AC-2007] Importer un fichier excel généré par une application intranet
    Par Debutant10 dans le forum VBA Access
    Réponses: 23
    Dernier message: 13/09/2016, 21h34
  2. [Security] "principal" généré par une application externe
    Par chris_013 dans le forum Spring
    Réponses: 0
    Dernier message: 30/12/2009, 16h27
  3. Télécharger un fichier généré par une servlet Java
    Par El Saigneur dans le forum Flex
    Réponses: 7
    Dernier message: 31/07/2009, 10h27
  4. Réponses: 2
    Dernier message: 11/09/2008, 14h49
  5. Probleme avec des logs générés par une application
    Par yayamo dans le forum Débuter avec Java
    Réponses: 2
    Dernier message: 16/04/2008, 15h41

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo