Convert TXT to CSV in Java

TXT files can sometimes contain numeric data that you might need to process with some application. Accordingly, TXT to CSV file conversion can be helpful to parse the numeric data as comma separated values. This article covers how to convert a TXT file to CSV format programmatically in Java.
June 15, 2022 · Farhan Raza

Convert PDF to JPG in Python

PDF files are everywhere in the form of documents, invoices, receipts, articles, and so on. It is one of the most convenient formats for printing and sharing the documents. In certain cases, you have to convert the PDF files to JPG images for generating thumbnails or embedding into your front end applications. To achieve that, this article covers how to convert pages in a PDF to JPG images programmatically in Python.
June 15, 2022 · Usman Aziz

Convert Excel XLS to CSV in Java

XLS files are commonly used to store the data in the form of rows and columns. However, while processing the data, you often need to convert XLS files to CSV (Comma Separated Values) format. To perform this conversion programmatically, this article shows how to convert an Excel XLS to CSV in Java.
June 15, 2022 · Usman Aziz

Convert Excel XLS to JSON in Java

XLS files are immensely used for storing small or large-sized data. Also, you can process and manipulate data by performing various operations. However, in certain cases, you have to transform the Excel data into JSON format, such as in web applications. To perform this conversion programmatically, this article shows how to convert an Excel XLS or XLSX file to JSON in Java.
June 15, 2022 · Usman Aziz

Convert CSV to XML using Java

Java developers can quickly export CSV data to XML with code. This guide shows step‑by‑step how to convert a CSV file to XML programmatically using Java.
June 15, 2022 · Muzammil Khan

Connect to Microsoft365 Mailbox using Modern Authentication in C# .NET

June 14, 2022 · Dmitrysamodurov

Convert JSON Files to PDF in Python

JSON files provide a convenient way to import or export data within the web, desktop, or mobile applications. You can easily generate or parse the JSON files programmatically. However, in certain cases, you have to convert the received JSON data to other formats. In this article, you will learn how to convert a JSON file to PDF in Python.
June 14, 2022 · Usman Aziz

Convert JSON Files to XLS/XLSX in Java

JSON files are widely used to keep and share the data. Most often, JSON files are used to import or export data within the web, desktop, or mobile applications. In certain cases, you have to convert the received JSON data to XLS or XLSX format programmatically. To achieve that, this article covers how to convert a JSON file to Excel XLS or XLSX in Java.
June 14, 2022 · Usman Aziz

Convert Excel XLS Files to XLSX in Python

Excel spreadsheets are commonly used to store small or large sized data conveniently. Moreover, you can visualize the spreadsheet data and perform differnet operations to manipulate it. XLS was the earlier file format that was used by Microsoft Excel to store spreadsheet data. Although Microsoft introduced XLSX in 2007 with extended features and capabilities, various people still use XLS format that you have to convert to XLSX afterwards. In this article, you will learn how to convert XLS files to XLSX format programmatically in Python.
June 14, 2022 · Usman Aziz

Convert Text Files to PDF in Java

As a Java developer, we can easily convert TXT files to PDF format programmatically in Java applications. In this article, you will learn how to convert Text to PDF using Java..
June 14, 2022 · Muzammil Khan