(OutputStream output, String text)
| 1604 | |
| 1605 | |
| 1606 | void saveNumberODS(OutputStream output, String text) throws IOException { |
| 1607 | writeUTF(output, |
| 1608 | " <table:table-cell office:value-type=\"float\" office:value=\"" + text + "\">", |
| 1609 | " <text:p>" + text + "</text:p>", |
| 1610 | " </table:table-cell>"); |
| 1611 | } |
| 1612 | |
| 1613 | |
| 1614 | static Charset utf8; |