Hello, I've tried (hardly) to copy a single sheet extracted from one spreadsheet to another. Is there a quick way to do that with jopendocument 1.2 .
Something like : -------------------------------------------------------------------------------------------------------------- File inputFile = new File(fic1); File outputFile = new File(fic1); SpreadSheet classeur_in = SpreadSheet.createFromFile(inputfile); SpreadSheet classeur_out = SpreadSheet.createFromFile(outputfile); Sheet generique = classeur_in.getSheet(0); // assuming it exists --> (this method doesn't exists) classeur_out.addsheet(int index, Sheet generique); --------------------------------------------------------------------------------------------------------------- Thx in advance, MM.
