Good afternoon, i develop a java function for my application that, starting from a JTable, make the export in a formatted sheet in .xlsx This is the code of the function that take jtable and the "excel file name" to export it: public void toExcel(JTable table, String nome_resoconto) throws Exception{ try{ TableModel model = (my_table_model_class) ..
Recent Comments