Zh

在 Java 中将 CSV 转换为 Excel (XLS XLSX) & Vice Versa

CSV 包含逗号分隔的值,通常用于存储不带格式的表格数据。这些文件可以在任何文本编辑器中查看,也可以在 MS Excel 中以表格格式查看。另一方面,MS Excel 文件最常用的格式是 XLS 和 XLSX。这些格式支持无数的格式化选项。本文讨论 XLS/XLSX 格式到 CSV 格式和 CSV 到 XLS/XLSX 格式编程使用 Java 的 Excel 电子表格的转换。
七月 31, 2021 · 2 分钟 · Shoaib Khan

使用 C# 将 JSON 转换为 CSV 和 CSV 到 JSON

JSON(JavaScript Object Notation)是一种人类可读的结构化数据格式。它广泛用于存储和传递数据的 API、应用程序和配置。 CSV 包含逗号分隔值,通常用于存储可以使用 MS Excel 等电子表格应用程序完美显示的表格数据。为了传输表格数据或将接收到的结构化数据存储为表格形式,需要将格式相互转换。本文讨论 JSON 到 CSV 格式和 CSV 到 JSON 格式的转换使用 C# 为您的 .NET 应用程序编程。
六月 18, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将 EML 或 MSG 文件转换为 PDF

For sharing and referencing the email content, you may need to convert your email message to PDF format. In this article, you will learn the conversion of email message files like EML and MSG into PDF using C#. In one of the other blog posts, we have already discussed the [conversion of emails to PDF using Java][1]. This will help to automate the email conversions within your desktop or web-based applications.
五月 26, 2021 · 2 分钟 · Shoaib Khan

在 Java 中将文档转换为 Excel XLS、XLSX

对于 PDF 和 Word 文档的表格形式的数据,您有时需要将其转换为 Excel 电子表格。我们需要将尽可能多的文档自动转换为电子表格或多个工作簿。本文将讨论如何以编程方式将 Word 文档转换为 Excel,以及如何将 PDF 文件转换为 Java 中的 Excel 电子表格。
五月 22, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将图像转换为 PDF

An Image can be converted to PDF to assure that the image will display correctly across devices without being altered. PDF images are ideal for printing and for storing images online when intended to be downloaded. PDF can hold as many images in one document so can be printed easily or saved as a catalog. This article will guide you to programmatically convert images like JPG, GIF, WebP, PNG to PDF in C# using .NET API for document and image conversion.
五月 19, 2021 · 2 分钟 · Shoaib Khan

在 Java 中将图像转换为 PDF

As PDF is the most common portable document format used to exchange files, there arises the requirement to convert documents as well as images to PDF format without losing the quality. In this article, we will learn to programmatically convert images to PDF format in Java.
四月 21, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将文档转换为 Excel XLS、XLSX

If you have tabular data in PDF or Word documents format, you definitely need to convert it to Excel spreadsheets. This scenario becomes complex when there are many spreadsheets or multiple workbooks. You surely need to automate this procedure. In this article, we will see how to convert PDF to Excel and also how to convert Word documents to Excel spreadsheet programmatically in C# using .NET API.
四月 13, 2021 · 2 分钟 · Shoaib Khan

在 Java 中将演示文稿转换为 PDF

As PDF is the popular portable document format, so there comes the need to convert documents of other formats to PDF. Today, we will see different ways to convert PPT, PPTX, or ODP presentations to PDF in Java. In an earlier post, we have seen [how to convert presentations using C#][1]. [继续阅读…][2]
二月 15, 2021 · 2 分钟 · Shoaib Khan

在 Java 中将 WebP 转换为 JPG、PNG 和 PDF

WebP 图像提供像 PNG 一样的透明度像 GIF 一样的动画,对于任何 Web 开发人员来说,最重要的是 比比较质量的 JPG 格式更小。但是,由于不兼容问题或任何其他要求,有时需要将 WebP 图像转换为 JPG、PNG 或其他格式。
一月 18, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将 CAD 绘图转换为 PDF

今天,我们将学习如何在 C# 中以编程方式将 CAD 图纸转换为 PDF 格式。以前,在 [早期文章][1] 中,我们做了同样的事情,但使用的是 Java。我们希望通过代码示例将 DWG、DGN 和 DWF 文件转换为 PDF 文档。让我们使用 .NET 的文档转换 API 在 C# 中完成。
十一月 8, 2020 · 2 分钟 · Shoaib Khan