Full-text search is a way to search a text/query within a collection of documents. This approach quickly finds all instances of a term/phrase and it works by using text indexes. In this article, we will learn how to programmatically search full-text in documents using Java.
Convert CSV to Excel (XLS XLSX) & Vice Versa in Java
CSV contains the comma-separated values, normally used to store tabular data without formatting. These files can be viewed in any text editor and also in MS Excel for tabular format. On the other hand, the most used formats for MS Excel files are XLS and XLSX. These formats support countless formatting options. This article discusses the conversion of the Excel spreadsheets of XLS/XLSX format to CSV format and CSV to XLS/XLSX format programmatically using Java.
Watermark PDF Files using C#
To protect your files from any illegal use or to apply branding to your documents, watermarks can be used . In this article, you will learn to programmatically add the watermarks to PDF files using C#. We will separately looking into adding watermark text and image watermarks.
Manage XMP and EXIF Data of HEIF/HEIC Images using C#
HEIC (High-Efficiency Image Container) is a container that can contain High-Efficiency Image Format HEIF images. XMP is an XML-based metadata standard, that can store metadata properties as name/value pairs. However, EXIF (Exchangeable Image File Format) is the standard and defines how to store metadata properties in the most common images and audio formats. In this article, we will learn how to extract, update, and remove the XMP and EXIP metadata of the HEIF/HEIC images using C# within .NET applications.
Generate Barcode in C# - Add Barcode to Documents and Images
Barcode is way to present the data in machine readable format. Barcodes are normally used for quick identification of large number of items. In this article, you will learn how to generate barcodes within .NET applications. Further you will see, how the generated barcodes can be applied to any of your documents and images using C#.
Generate Reports from XML Data in Java
XML is an eXtensive Markup Language that is self-descriptive, W3C Recommended, and designed to store and transport data. After receiving the data in XML format, as a developer, you can convert it into any other better human-readable format like PDF or MS Word document. This article will guide you to convert XML data into PDF and MS Word reports in Java using simple templates.
Generate Reports from CSV Data in Java
The Comma Separated Values (CSV) is a file format for storing the data in the form of plain text where the values are separated by commas. CSV is widely used for exchanging data among applications. As a developer, we often need to convert the large CSV data into a presentable format. This article will guide you to convert CSV data into PDF and MS Word reports in Java using a simple template.
Watermark PDF Files in Java
Whether you want to apply branding to your documents or you want to protect our files from any illegal use, the watermark does the job for you. In this article, you will learn to programmatically add the watermarks to your PDF files using Java.
Add or Remove Annotations or Markup Word files using C#
Forget to discuss documents content and feedbacks in long email threads. Simply use annotations to markup documents with messages and replies. In this article, you will learn how to programmatically add and remove annotations to markup Word documents in C# with your .NET applications.
Convert JSON to CSV and CSV to JSON using C#
JSON (JavaScript Object Notation) is a human-readable structured data format. It is widely used in APIs, applications, and configurations for storing and passing the data. CSV contains the comma-separated values, normally used to store tabular data that can be perfectly displayed using spreadsheet applications like MS Excel. To transfer the tabular data or store the received structured data into tabular form, requires converting formats into one another. This article discusses the conversion of JSON to CSV format and CSV to JSON format programmatically using C# for your .NET applications.