Bonjour, voici la structure de mon projet
http://imagesup.org/images12/1392992016-sans-titre.jpg
voici le code java
Code :
- package applet;
- import java.awt.*;
- import java.applet.*;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.util.Iterator;
- import org.apache.poi.hssf.usermodel.HSSFCell;
- import org.apache.poi.hssf.usermodel.HSSFRichTextString;
- import org.apache.poi.hssf.usermodel.HSSFRow;
- import org.apache.poi.hssf.usermodel.HSSFWorkbook;
- // ajouter cette import pour creer une nouvelle feuille
- import org.apache.poi.hssf.usermodel.HSSFSheet;
- import org.apache.poi.poifs.filesystem.POIFSFileSystem;
- public class Appl extends Applet {
- String msg;
- public void init() {
- try {
- FileOutputStream fileOut;
- POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("Critique.xls" ));
- HSSFWorkbook wb = new HSSFWorkbook(fs);
- HSSFSheet sheet = wb.getSheetAt(0);
- HSSFRow row = sheet.getRow(6);
-
- HSSFCell cell = row.getCell((short) 2);
- HSSFCell cell1 = row.getCell((short) 3);
- if (cell != null & cell1 != null){
-
- msg=cell.getRichStringCellValue()+" "+cell1.getRichStringCellValue();
- }
-
- fileOut = new FileOutputStream("Critique.xls" );
- wb.write(fileOut);
- fileOut.close();
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- public void paint(Graphics g) {
- g.drawString(msg, 20, 20);
-
- }
-
- }
|
voici le code du fichier HTML
http://imagesup.org/images12/13929 [...] titre2.jpg
Et quand j'ouvre le fichier html
voici la réponse
http://imagesup.org/images12/13929 [...] titre3.jpg
merci pour votre aide