Ici, je vais donner l'exemple échantillon, comment écrire Excel, utiliser dans pom.xml
<dependency>
<groupId>net.sf.jxls</groupId>
<artifactId>jxls-core</artifactId>
<version>0.9</version>
</dependency>
classe Model:
public class Products {
private String productCode1;
private String productCode2;
private String productCode3;
constructors,setters and getters
}
classe principale:
public class WriteExcel {
public void writeExcel() {
Collection staff = new HashSet();
staff.add(new Products("101R15ss0100", "PALss Kids 1.5 A360 ", "321"));
staff.add(new Products("101R1ss50100", "PAL sKids 1.5 A360 ", "236"));
Map beans = new HashMap();
beans.put("products", staff);
XLSTransformer transformer = new XLSTransformer();
try {
transformer.transformXLS(templateFileName, beans, destFileName);
System.out.println("Completed!!");
} catch (ParsePropertyException e) {
System.out.println("In ParsePropertyException");
e.printStackTrace();
} catch (IOException e) {
System.out.println("In IOException");
e.printStackTrace();
}
}
public static void main(String[] args) {
WriteExcel writeexcel = new WriteExcel();
writeexcel.writeExcel();
}
}
Quels liens parlez-vous? Il y a beaucoup de manières différentes d'écrire pour exceler des fichiers de Java. Y a-t-il une API ou une bibliothèque particulière avec laquelle vous rencontrez des problèmes? – FloppyDisk
duplication possible de [feuille de calcul Excel (XLS) générant JSP à télécharger] (http://stackoverflow.com/questions/477886/jsp-generating-excel-spreadsheet-xls-to-download) –