Skip to content

Instantly share code, notes, and snippets.

View groupdocs-com-kb's full-sized avatar

groupdocs-com-kb

View GitHub Profile
@groupdocs-com-kb
groupdocs-com-kb / How to Convert CSV to Excel in Java.java
Last active April 18, 2022 17:41
How to Convert CSV to Excel in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-csv-to-excel-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.SpreadsheetConvertOptions;
public class ConvertCsvToExcelInJava {
public static void main(String[] args) { // Main function to convert CSV to Excel in Java
// Remove the watermark in output Excel document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert MHTML to PDF in Java.java
Last active April 20, 2022 17:53
How to Convert MHTML to PDF in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-mhtml-to-pdf-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
public class ConvertMhtmlToPdfInJava {
public static void main(String[] args) { // Main function to convert MHTML to Word in Java
// Remove the watermark in output PDF document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert VSDX to PDF in C#.cs
Last active April 21, 2022 18:21
How to Convert VSDX to PDF in C#. For more information, please follow link: https://kb.groupdocs.com/conversion/net/how-to-convert-vsdx-to-pdf-in-csharp/
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertVsdxToPdfInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert VSDX to PDF using C#
{
// Remove the watermark in output PDF document by adding license
@groupdocs-com-kb
groupdocs-com-kb / How to Convert XLSB to PDF in C#.cs
Last active April 22, 2022 11:41
How to Convert XLSB to PDF in C#. For more information, please follow link: https://kb.groupdocs.com/conversion/net/how-to-convert-xlsb-to-pdf-in-csharp/
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertXlsbToPdfInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert XLSB to PDF using C#
{
// Remove the watermark in output PDF document by adding license
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertPdfToExcelUsingCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert PDF to Excel using C#
{
// Remove the watermark in output Excel file by adding license
@groupdocs-com-kb
groupdocs-com-kb / How to Convert XML to CSV in C#.cs
Last active April 26, 2022 19:33
How to Convert XML to CSV in C#. For more information, please follow link: https://kb.groupdocs.com/conversion/net/how-to-convert-xml-to-csv-in-csharp/
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertXmlToCsvInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert XML to CSV using C#
{
// Remove the watermark in output CSV document by adding license
@groupdocs-com-kb
groupdocs-com-kb / How to Convert XLS to XLSX in Java.java
Last active April 28, 2022 11:31
How to Convert XLS to XLSX in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-xls-to-xlsx-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.SpreadsheetConvertOptions;
public class ConvertXlsToXlsxInJava {
public static void main(String[] args) { // Main function to convert XLS to XLSX in Java
// Remove the watermark in output XLSX document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert XML to CSV in Java.java
Last active April 29, 2022 10:42
How to Convert XML to CSV in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-xml-to-csv-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.SpreadsheetConvertOptions;
import com.groupdocs.conversion.filetypes.SpreadsheetFileType;
public class ConvertXmlToCsvInJava {
public static void main(String[] args) { // Main function to convert XML to CSV in Java
// Remove the watermark in output CSV document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.MarkupConvertOptions;
public class ConvertRtfToHtmlInJava {
public static void main(String[] args) { // Main function to convert RTF to HTML in Java
// Remove the watermark in output HTML document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertXlsToXlsxUsingCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert XLS to XLSX using C#
{
// Remove the watermark in output XLSX document by adding license