CSV files data is basically comma-separated values and it is very difficult to read such data in raw format. However, when these files are viewed using any of the well-known editors like Microsoft Excel, OpenOffice Calc, or LibreOffice that support CSV format, it becomes quite easy to manipulate CSV files. Even then, what about if you want to compare two large CSV files for their difference in data? Let’s do it programmatically. This article quickly covers the basic way how to compare two CSV files in Java.
Count Words and Occurrences of Each Word in a Document using Java
Writing is not just a simple task for everyone. It is recommended not to repeat the same words and phrases again and again. In today’s world of optimization, you often need to count and then limit the repetition of words and phrases. This article discusses, how to programmatically count words in documents and the occurrences of each word in Java.
Count Words and Occurrences of Each Word in a Document using C#
This article demonstrates how to programmatically count words and the word occurrence count of each word in PDF, Word, Excel, PowerPoint, Ebook, Markup, and Email document formats using C#.
Remove Pages from PDF in Java
When an old document is updated; the outdated, obsolete, or even highly confidential pages are required to be removed from the latest version of the document. In this article, we will learn how to programmatically remove such pages from the PDF documents in Java. Further, we will discuss different ways to remove list of pages, pages range, even and odd pages of PDF document.
Remove Pages from PDF using C#
We often require removing the unwanted, obsolete, highly confidential pages from the documents while sharing or finalizing the drafts. In this article, we will learn how to programmatically remove such pages from the PDF document using C#. Requirements may differ at times, so we will discuss different ways to remove the different sets of pages within the PDF document.
Change Page Orientation of a Word Document in C#
Every page of the document may contain different layouts. It depends on the content of the page; that which orientation suits it. As a developer, we can change the orientation of each page to the one it suits. In this article, we will learn to change the orientation of a page in a Word document using C#. Separately, we will see how to change the portrait layout to landscape and then how to change the landscape orientation to portrait with the .NET applications.
Remove Watermarks from PDF Documents in Java
Watermarks are mostly used to mentioned documents as drafts and to avoid any illegal use of confidential documents. When draft as finalized or confidentiality is over, you can remove the watermarks from such documents. Watermarks can be either text or image-based. In this article, we will have a look about how to remove watermarks from PDF documents in Java.
Change Page Orientation of a Word Document in Java
Page orientation depends on the content layout of the page. As a developer, we can programmatically change the orientation of each page to the one it suits. In this article, we will learn to change the orientation of a page in a Word document in Java. Separately, we will see how to change the landscape orientation to portrait and then how to change the portrait orientation to landscape with the Java applications.
How to Edit Excel Files in Java
XLS, XLSX, and ODS are among the most common and widely in-use spreadsheet file formats. We normally maintain various accounts and different spreadsheets using famous Microsoft Excel and OpenOffice Calc which support these formats. Therefore, as a developer, we widely require programmatically editing Excel files within our applications. In this article, we will discuss how to edit Excel files in Java.
Edit Word Documents in Java
DOC, DOCX, and ODT are among the most common and widely in-use word-processing file formats. Microsoft Word and OpenOffice Writer support these formats and are used for drafting documents. Therefore, as a developer, we often need to programmatically edit Word documents within the applications. In this article, we will discuss how to edit Word documents using the Java API for document editing.