PDF/Excel sheet writing through JAVA
Hi, Today I am going to explain the writing of PDF and Excel sheet through java. To write the data from java to PDF file you may require the following supporting jars, jText-2.1.5.jar gnujaxp.jar jcommon-1.0.17.jar I use the netbean IDE for the development where I added the above jars on the project library for download above jar's click here Here I create the JFileChooser to select the destination where we want to save a file Create a function which will ask you to select the file type for saving or exporting data to pdf or excel sheet public JFileChooser file_select public void Select_fileType() { try { file_select =new JFileChooser(); file_select.setFileSelectionMode(JFileChooser.FILES_ONLY...