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

API standards et tierces Java Discussion :

[POI] Lire un fichier 2007


Sujet :

API standards et tierces Java

  1. #1
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut [POI] Lire un fichier 2007
    Bonjour,

    J'aimerai savoir comment lire un fichier de 2007 avec l'extension .xlsx ?

    je fais ca mais ca ne marche pas car j'ai des erreurs:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
     
    try {
          POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("Projection_2012_Eq2.xlsx"));
          XSSFWorkbook wb = new XSSFWorkbook(fs);
          XSSFSheet sheet = wb.getSheetAt(0);
          XSSFRow row = null;
          XSSFCell cell = null;
          double totalLigne = 0.0;
          double totalGeneral = 0.0;
          int numLigne = 1;
    Merci

  2. #2
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Salut , tu n'as pas besoin d'utiliser le POIFile System
    tu met directement
    XSSFWorkbook wb= new XSSFWorkbook("chemin");
    et le reste vient

  3. #3
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Alors je fais un exemple très simple d'ouverture et d'écriture de fichier:
    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
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
     
    import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
    import org.apache.poi.ss.usermodel.Cell;
    import org.apache.poi.ss.usermodel.Row;
    import org.apache.poi.ss.usermodel.Sheet;
    import org.apache.poi.ss.usermodel.Workbook;
    import org.apache.poi.ss.usermodel.WorkbookFactory;
    import org.apache.poi.xssf.usermodel.XSSFWorkbook;
     
     
    public class LireEcrire {
     
        /**
         * @param args
         */
        public static void main(String[] args) {
            //InputStream inp;
            try {
            XSSFWorkbook wb= new XSSFWorkbook("workbook.xlsx");
     
     
            Sheet sheet = wb.getSheetAt(0);//onglet 0
            Row row = sheet.getRow(0);//ligne 0
            Cell cell = row.getCell(8);// colonne 8 (D)
            if (cell == null)
                cell = row.createCell(8);
            cell.setCellType(Cell.CELL_TYPE_STRING);
            cell.setCellValue("i write in my sheet 'test'");
     
            // Write the output to a file
            FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
            wb.write(fileOut);
            fileOut.close();
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
     
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
     
        }
    }
    et voici l'erreur obtenu:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlException
    at LireEcrire.main(LireEcrire.java:24)
    Caused by: java.lang.ClassNotFoundException: org.apache.xmlbeans.XmlException
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 1 more
    La même que celle que j'obtiens depuis 2 semaines maintenant.

    J'ai vérifié mon classpath.
    J'ai mis tous les jars de POI version 3.7.

    Toujours cette erreur...

  4. #4
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    je te conseillerai d'utliser les XSSFSheet et XSSFRow
    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
     
    XSSFSheet sheet=(XSSFSheet)wb.getSheetAt(0);
              int lastRowNum=sheet.getLastRowNum();
              System.out.println(lastRowNum);
              for(int i=0;i<lastRowNum;i++)
              {
            //	  XSSFClientAnchor b=new XSSFClientAnchor();
                   XSSFRow row=sheet.getRow(i);
                   if(row!=null){
    	               int lastCellNum=row.getLastCellNum();
    	              System.out.println("\n => LIGNE "+i+"\n");
    	               for(int j=0;j<lastCellNum;j++)
    	               {
    	                   XSSFCell cell=row.getCell(j);
    	                   if(cell!=null){
    	                	   System.out.print(cell.getColumnIndex()+":"+cell.getRowIndex()+":"+cell+" - ");
    	                   }
     
    	               }System.out.println();
                   }
              }
          }

  5. #5
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Toujours la même erreur avec ce que tu m'as dit de faire:
    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
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
     
    import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
    import org.apache.poi.ss.usermodel.Cell;
    import org.apache.poi.ss.usermodel.FormulaEvaluator;
    import org.apache.poi.ss.usermodel.Row;
    import org.apache.poi.ss.usermodel.Sheet;
    import org.apache.poi.ss.usermodel.Workbook;
    import org.apache.poi.ss.usermodel.WorkbookFactory;
    import org.apache.poi.xssf.usermodel.XSSFCell;
    import org.apache.poi.xssf.usermodel.XSSFRow;
    import org.apache.poi.xssf.usermodel.XSSFSheet;
    import org.apache.poi.xssf.usermodel.XSSFWorkbook;
     
     
    public class LireEcrire {
     
    	/**
             * @param args
             */
    	public static void main(String[] args) {
    		//InputStream inp;
    		try {
    		XSSFWorkbook wb= new XSSFWorkbook("workbook.xlsx");
     
    		XSSFSheet sheet = (XSSFSheet)wb.getSheetAt(0);//onglet 0
    		XSSFRow row = sheet.getRow(0);//ligne 0
    		XSSFCell cell = row.getCell(8);// colonne 8 (D)
    	    FormulaEvaluator evaluator = wb.getCreationHelper().createFormulaEvaluator();
    	    evaluator.evaluate(cell);
    	    if (cell == null)
    	        cell = row.createCell(8);
    	    cell.setCellType(Cell.CELL_TYPE_STRING);
    	    cell.setCellValue("i write in my sheet 'test'");
     
    	    // Write the output to a file
    	    FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
    	    wb.write(fileOut);
    	    fileOut.close();
    		} catch (FileNotFoundException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} catch (IOException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		}
    	}
    }

  6. #6
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Ouah c'est bizarre regarde si la structure du fichier n'a pas ete verouillée
    sinon je vais continuer a regarder pour toi

  7. #7
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Ta mis tous les jar de la bibliotheque?

  8. #8
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Exactement!
    j'ai tous les jar apache poi 3.7.
    Ca marche chez toi mon programme ??

  9. #9
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    oui ca marche parfaitement

  10. #10
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Dans mes package j'ai le package xmlbeans-2.3.0.jar

  11. #11
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Je viens de le télécharger et l'ajouter la lib xmlbeans-2.3.0.jar.

    J'ai cette erreur-ci maintenant:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    Exception in thread "main" org.apache.poi.POIXMLException: java.io.IOException: Can't obtain the input stream from /docProps/app.xml
    	at org.apache.poi.POIXMLDocument.getProperties(POIXMLDocument.java:172)
    	at org.apache.poi.POIXMLDocument.write(POIXMLDocument.java:208)
    	at LireEcrire.main(LireEcrire.java:42)
    Caused by: java.io.IOException: Can't obtain the input stream from /docProps/app.xml
    	at org.apache.poi.openxml4j.opc.PackagePart.getInputStream(PackagePart.java:468)
    	at org.apache.poi.POIXMLProperties.<init>(POIXMLProperties.java:75)
    	at org.apache.poi.POIXMLDocument.getProperties(POIXMLDocument.java:170)
    	... 2 more
    la ligne impacté est celle-ci maintenant:


  12. #12
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Au fait j'ai rencontré ce probleme c'est du au fait que le inputstream n'est pas ferme!
    Si tu change le nom dans le write, ca passe .
    Bon je suis toujours en train de chercher, si je trouve je t'en ferai pasrt ...

    lien

  13. #13
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Comment ca changer mon nom dans le write?
    Je met quoi alors ?

    J'ai regardé dans le lien il dise que je dois utiliser un InputStream.
    Donc j'ai réécrit mon 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
    54
    55
     
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
     
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
    import org.apache.poi.ss.usermodel.Cell;
    import org.apache.poi.ss.usermodel.FormulaEvaluator;
    import org.apache.poi.ss.usermodel.Row;
    import org.apache.poi.ss.usermodel.Sheet;
    import org.apache.poi.ss.usermodel.Workbook;
    import org.apache.poi.ss.usermodel.WorkbookFactory;
    import org.apache.poi.xssf.usermodel.XSSFCell;
    import org.apache.poi.xssf.usermodel.XSSFRow;
    import org.apache.poi.xssf.usermodel.XSSFSheet;
    import org.apache.poi.xssf.usermodel.XSSFWorkbook;
     
     
    public class LireEcrire {
     
    	/**
             * @param args
             */
    	public static void main(String[] args) {
    		//InputStream inp;
    		try {
    		InputStream is = new FileInputStream("workbook.xlsx");//pour ouvrir les fichiers xlsx de 2007
    		XSSFWorkbook wb = new XSSFWorkbook(is);
     
    		XSSFSheet sheet = (XSSFSheet)wb.getSheetAt(0);//onglet 0
    		XSSFRow row = sheet.getRow(0);//ligne 0
    		XSSFCell cell = row.getCell(8);// colonne 8 (D)
    	    FormulaEvaluator evaluator = wb.getCreationHelper().createFormulaEvaluator();
    	    evaluator.evaluate(cell);
    	    if (cell == null)
    	        cell = row.createCell(8);
    	    cell.setCellType(Cell.CELL_TYPE_STRING);
    	    cell.setCellValue("i write in my sheet 'test'");
     
    	    // Write the output to a file
    	    FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
    	    wb.write(fileOut);
    	    fileOut.close();
    		} catch (FileNotFoundException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} catch (IOException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		}
    	}
    }
    et maintenant j'ai cette erreur-ci.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    Exception in thread "main" org.apache.poi.POIXMLException: org.apache.poi.openxml4j.exceptions.InvalidFormatException: Package should contain a content type part [M1.13]
    	at org.apache.poi.util.PackageHelper.open(PackageHelper.java:41)
    	at org.apache.poi.xssf.usermodel.XSSFWorkbook.<init>(XSSFWorkbook.java:186)
    	at LireEcrire.main(LireEcrire.java:30)
    Caused by: org.apache.poi.openxml4j.exceptions.InvalidFormatException: Package should contain a content type part [M1.13]
    	at org.apache.poi.openxml4j.opc.ZipPackage.getPartsImpl(ZipPackage.java:147)
    	at org.apache.poi.openxml4j.opc.OPCPackage.getParts(OPCPackage.java:592)
    	at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:222)
    	at org.apache.poi.util.PackageHelper.open(PackageHelper.java:39)
    	... 2 more
    qui provient de cette ligne:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    XSSFWorkbook wb = new XSSFWorkbook(is);

  14. #14
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Dans ce cas si tu veux use le inputstream fais le avec OPCPackage
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     InputStream is = new FileInputStream("workbook.xlsx");
        	   OPCPackage opc=OPCPackage.open(is);
              XSSFWorkbook wb= new XSSFWorkbook(opc);

  15. #15
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    J'ai cette erreur-ci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    org.apache.poi.openxml4j.exceptions.InvalidFormatException: Package should contain a content type part [M1.13]
    	at org.apache.poi.openxml4j.opc.ZipPackage.getPartsImpl(ZipPackage.java:147)
    	at org.apache.poi.openxml4j.opc.OPCPackage.getParts(OPCPackage.java:592)
    	at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:222)
    	at LireEcrire.main(LireEcrire.java:32)
    ligne affecté:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    OPCPackage opc=OPCPackage.open(is);

  16. #16
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    cela veut dire que ton fichier "xlsx" n'est pas bon (est ce que tu parviens à l'ouvrir avec office normalement?)sinon cree un nouveau fichier xlsx écris klk chose teste et donne moi le resultat

  17. #17
    Membre éclairé Avatar de mouss4rs
    Profil pro
    Inscrit en
    Janvier 2008
    Messages
    884
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2008
    Messages : 884
    Par défaut
    Sssuuuppeerr !

    Ca Marche Youpiiiii

    Que Dieu t'apporte l'aide dont tu as besoin mon ami !

    En effet, quand je l'ouvrais il m'affichait qu'il était endommagé.
    donc j'en ai créer un autre.

    donc pour écrire dans un fichier excel faut faire ceci:
    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
     
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
     
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
    import org.apache.poi.openxml4j.opc.OPCPackage;
    import org.apache.poi.ss.usermodel.Cell;
    import org.apache.poi.ss.usermodel.FormulaEvaluator;
    import org.apache.poi.ss.usermodel.Row;
    import org.apache.poi.ss.usermodel.Sheet;
    import org.apache.poi.ss.usermodel.Workbook;
    import org.apache.poi.ss.usermodel.WorkbookFactory;
    import org.apache.poi.xssf.usermodel.XSSFCell;
    import org.apache.poi.xssf.usermodel.XSSFRow;
    import org.apache.poi.xssf.usermodel.XSSFSheet;
    import org.apache.poi.xssf.usermodel.XSSFWorkbook;
     
     
    public class LireEcrire {
     
    	/**
             * @param args
             */
    	public static void main(String[] args) {
    		try {
    		InputStream is = new FileInputStream("workbook.xlsx");
    		OPCPackage opc=OPCPackage.open(is);
    	    XSSFWorkbook wb= new XSSFWorkbook(opc); 
     
    		XSSFSheet sheet = (XSSFSheet)wb.getSheetAt(0);//onglet 0
    		XSSFRow row = sheet.getRow(0);//ligne 0
    		XSSFCell cell = row.getCell(8);// colonne 8 (D)
    	    FormulaEvaluator evaluator = wb.getCreationHelper().createFormulaEvaluator();
    	    evaluator.evaluate(cell);
    	    if (cell == null)
    	        cell = row.createCell(8);
    	    cell.setCellType(Cell.CELL_TYPE_STRING);
    	    cell.setCellValue("sisi");
     
    	    // Write the output to a file
    	    FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
    	    wb.write(fileOut);
    	    fileOut.close();
    		} catch (FileNotFoundException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} catch (IOException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		} catch (InvalidFormatException e) {
    			// TODO Auto-generated catch block
    			e.printStackTrace();
    		}
    	}
    }
    Merci

  18. #18
    Membre confirmé
    Homme Profil pro
    informatique
    Inscrit en
    Avril 2012
    Messages
    89
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : informatique
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Avril 2012
    Messages : 89
    Par défaut
    Bonsoir mouss4rs j'ai le même probléme mais je n'arrive pas a le regler car il me souligne en rouge
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     XSSFWorkbook wb= new XSSFWorkbook(opc);
    je veux lire un fichier xlsx et le modifier?

  19. #19
    Membre éclairé Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Par défaut
    Salut Lili dis peux tu donner plus de precision ?
    Quel genre d'erreur tu as?
    et un bout de code de la partie incrimienee merci !!!

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [POI] Lire un fichier de type Excel
    Par nguyen_jimmy dans le forum Java EE
    Réponses: 2
    Dernier message: 03/10/2012, 20h18
  2. Réponses: 2
    Dernier message: 29/01/2010, 17h59
  3. Lire un fichier avec access runtime 2007
    Par Flamby38 dans le forum Runtime
    Réponses: 2
    Dernier message: 11/09/2007, 15h18
  4. Réponses: 1
    Dernier message: 02/05/2007, 10h22
  5. [POI] Lire un fichier word
    Par Hoegaarden dans le forum Documents
    Réponses: 8
    Dernier message: 03/10/2005, 17h59

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