Tagged articles
264 articles
Page 3 of 3
转转QA
转转QA
Jul 2, 2021 · Backend Development

Automating Valuation System Mapping Tests with Python and Pandas

This article describes how QA engineers automated the repetitive Excel‑based mapping and validation process of a valuation system by using Python pandas scripts to filter, compare, and export data, reducing manual effort from ten minutes to under one minute while improving accuracy and coverage.

AutomationExcelpandas
0 likes · 7 min read
Automating Valuation System Mapping Tests with Python and Pandas
Top Architect
Top Architect
Jun 10, 2021 · Backend Development

Optimizing Large Excel Import Performance in Java Backend Applications

This article details a step‑by‑step optimization of a Java backend Excel import pipeline, covering requirement analysis, performance bottlenecks, caching strategies, batch insertion techniques, parallel processing, and practical code examples to reduce a 10‑minute import to under two minutes.

Batch InsertExcelJava
0 likes · 13 min read
Optimizing Large Excel Import Performance in Java Backend Applications
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
May 27, 2021 · Frontend Development

How to Generate Excel‑Based Posters in the Browser Without Crashing

This article walks through building a front‑end‑only tool that reads student data from Excel, creates customized poster images using SheetJS, html2canvas, and JSZip, and solves out‑of‑memory crashes by analyzing JavaScript heap usage, refactoring recursive code, and optimizing DOM cloning with ignoreElements.

ExcelJSZipMemory Optimization
0 likes · 8 min read
How to Generate Excel‑Based Posters in the Browser Without Crashing
MaGe Linux Operations
MaGe Linux Operations
May 11, 2021 · Backend Development

Merge Two Excel Files with a Single Line of Python Code

This tutorial shows how to read two Excel worksheets with pandas, merge them on matching name columns using a single merge command, and save the combined data back to a new Excel file, all with just a few lines of Python code.

ExcelTutorialdata merging
0 likes · 4 min read
Merge Two Excel Files with a Single Line of Python Code
Python Crawling & Data Mining
Python Crawling & Data Mining
Mar 16, 2021 · Fundamentals

Find Nearest Geographic Points in Large Excel Files with Python

This article demonstrates a step‑by‑step Python workflow for reading two Excel sheets, calculating haversine distances between latitude‑longitude pairs, identifying the nearest point for each record, and exporting the results, complete with code snippets, progress display, and performance advantages over traditional GIS tools.

ExcelGeospatialdata-processing
0 likes · 6 min read
Find Nearest Geographic Points in Large Excel Files with Python
Programmer DD
Programmer DD
Mar 3, 2021 · Backend Development

How to Speed Up Large Excel Imports in Java: From POI to EasyExcel and Parallel Insertion

This article walks through a step‑by‑step optimization of a Java‑based Excel import pipeline, covering the transition from raw POI to EasyPOI and EasyExcel, caching database lookups, batch inserts, optimal batch sizes, parallel streams, and logging reductions to achieve sub‑minute import times for hundreds of thousands of rows.

BackendExcelJava
0 likes · 12 min read
How to Speed Up Large Excel Imports in Java: From POI to EasyExcel and Parallel Insertion
Top Architect
Top Architect
Feb 28, 2021 · Backend Development

Optimizing Large Excel Import Performance in Java Backend Applications

This article details a step‑by‑step optimization of a Java backend Excel import pipeline, covering migration from POI to EasyExcel, caching database lookups, batch insertion with MySQL VALUES, and parallel processing to reduce a 100k‑row import from minutes to under two minutes.

ExcelJavaMyBatis
0 likes · 10 min read
Optimizing Large Excel Import Performance in Java Backend Applications
Top Architect
Top Architect
Feb 5, 2021 · Backend Development

Using Apache POI to Create and Read Excel Files in Java

This article introduces Apache POI, the Java API for Microsoft Office documents, explains its core components such as Workbook, Sheet, Row, and Cell, and provides detailed code examples for creating, reading, and converting Java object lists to Excel files, including Maven dependencies and annotation usage.

Apache POIExcelJava
0 likes · 11 min read
Using Apache POI to Create and Read Excel Files in Java
php Courses
php Courses
Jan 25, 2021 · Backend Development

Generating Excel Reports with PhpSpreadsheet in PHP

This article provides a step‑by‑step guide on using the PhpSpreadsheet library in PHP to create, style, and populate Excel worksheets, covering object instantiation, cell merging, formatting, data insertion, and exporting the file as an XLSX document.

ExcelPhpSpreadsheetphp-code
0 likes · 9 min read
Generating Excel Reports with PhpSpreadsheet in PHP
Python Crawling & Data Mining
Python Crawling & Data Mining
Jan 7, 2021 · Fundamentals

Master Excel Export with Pandas: Styling, Formatting, and Engine Tricks

This guide walks you through preparing data with Pandas, saving it to Excel using direct to_excel, ExcelWriter with custom date and number formats, applying styles via Pandas Styler, leveraging both xlsxwriter and openpyxl engines for advanced formatting, auto‑adjusting column widths, and using templates for reusable layouts, all illustrated with code snippets and screenshots.

Data ExportExcelStyling
0 likes · 22 min read
Master Excel Export with Pandas: Styling, Formatting, and Engine Tricks
Laravel Tech Community
Laravel Tech Community
Jan 4, 2021 · Backend Development

Laravel Excel Export with Merged Cells and Custom Column Formatting

This article demonstrates how to create a Laravel export class using Maatwebsite\Excel that supports merging cells, custom column formatting, and handling large numeric values, providing a complete PHP implementation with constructor, collection, event registration, and column format methods for generating Excel files.

ExcelExportPHP
0 likes · 3 min read
Laravel Excel Export with Merged Cells and Custom Column Formatting
Programmer DD
Programmer DD
Sep 22, 2020 · Backend Development

Master EasyPOI: Design Complex Excel Templates and Export Images Efficiently

This article explains how to use EasyPOI for Excel template design, covering version compatibility, Maven configuration, template creation for simple and complex reports, expression syntax, image export pitfalls, and Java code examples to render data into templates without common pitfalls.

Apache POIEasyPOIExcel
0 likes · 15 min read
Master EasyPOI: Design Complex Excel Templates and Export Images Efficiently
Architecture Digest
Architecture Digest
Sep 15, 2020 · Databases

Optimizing Large‑Scale Excel Import in Java: From POI to EasyExcel, Caching, Batch Inserts and Parallel Processing

This article details how to dramatically speed up Excel‑driven fee‑record imports by replacing naïve POI row‑by‑row processing with EasyExcel, caching database look‑ups, using MySQL batch INSERTs, and finally applying parallel streams for multi‑threaded insertion, while also trimming excessive logging.

ExcelJavaMyBatis
0 likes · 12 min read
Optimizing Large‑Scale Excel Import in Java: From POI to EasyExcel, Caching, Batch Inserts and Parallel Processing
The Dominant Programmer
The Dominant Programmer
Aug 31, 2020 · Backend Development

Implement Excel Import/Export in RuoYi’s Front‑Back‑End Separation Using ElementUI and SpringBoot

This guide walks through adding an Excel import dialog with ElementUI, configuring upload handling, token authentication, progress and success callbacks, and a SpringBoot POI‑based import endpoint, then shows how to create an export button that uses RuoYi’s ExcelUtil and annotation‑driven export logic.

ElementUIExcelExport
0 likes · 12 min read
Implement Excel Import/Export in RuoYi’s Front‑Back‑End Separation Using ElementUI and SpringBoot
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 30, 2020 · Fundamentals

Master Excel‑Pandas Integration: From Data Import to Visualization in Python

This tutorial demonstrates how to combine Excel’s interactive features with Python’s Pandas library to perform comprehensive data operations—including reading, generating, filtering, sorting, handling missing values, deduplication, merging, grouping, calculation, statistics, visualization, sampling, pivot tables, and VLOOKUP—showing when each tool excels.

ExcelPythondata-processing
0 likes · 13 min read
Master Excel‑Pandas Integration: From Data Import to Visualization in Python
MaGe Linux Operations
MaGe Linux Operations
Jun 9, 2020 · Backend Development

How to Search Student Records in Excel Using Python xlrd

This tutorial demonstrates how to use Python's xlrd library to read an Excel file containing student records and retrieve a specific student's information by name or ID, covering installation, code walkthrough, and sample output.

ExcelSearchdata-processing
0 likes · 4 min read
How to Search Student Records in Excel Using Python xlrd
Python Programming Learning Circle
Python Programming Learning Circle
Mar 20, 2020 · Fundamentals

Data Cleaning with Python: Removing Duplicates, Blank Rows, and Formatting Dates and Numbers

This tutorial demonstrates how to use Python and pandas to clean Excel data by removing duplicate and empty rows, stripping spaces, reformatting date strings, and standardising numeric values with two‑decimal precision and currency symbols, providing complete code examples for each step.

Date FormattingExcelNumber Formatting
0 likes · 11 min read
Data Cleaning with Python: Removing Duplicates, Blank Rows, and Formatting Dates and Numbers
Java Captain
Java Captain
Feb 29, 2020 · Backend Development

Using Apache POI for Excel Import and Export in Java

This article demonstrates how to use Apache POI in a Maven‑based Java project to read and write both XLS and XLSX Excel files, covering library setup, core APIs, data type handling, and practical import/export implementations with Spring MVC and MyBatis.

Apache POIExcelImportExport
0 likes · 19 min read
Using Apache POI for Excel Import and Export in Java
Python Crawling & Data Mining
Python Crawling & Data Mining
Feb 16, 2020 · Fundamentals

Master Python File & Excel Automation: Walk Directories, Merge Sheets, and Manage Data

This guide walks through using Python's os and pathlib modules to traverse directories, demonstrates how to combine file paths, shows practical examples of merging multiple Excel workbooks and sheets with pandas, xlrd, and xlsxwriter, and explains splitting a workbook by column values, providing complete code snippets and results.

ExcelPythonfile I/O
0 likes · 14 min read
Master Python File & Excel Automation: Walk Directories, Merge Sheets, and Manage Data
Programmer DD
Programmer DD
Nov 21, 2019 · Backend Development

Mastering High‑Performance Excel Export in Java: A Complete Guide

This article explains how to build a reusable Java utility for exporting massive Excel reports, covering customizable headers, field formatting, multithreaded data retrieval, asynchronous processing, and provides full source code with detailed analysis and usage instructions.

ExcelExportJava
0 likes · 17 min read
Mastering High‑Performance Excel Export in Java: A Complete Guide
Programmer DD
Programmer DD
Nov 4, 2019 · Backend Development

Master Efficient Excel Imports in Java with EasyExcel and Spring Boot

This article explains how Java backend developers can replace memory‑heavy Apache POI with EasyExcel for fast, low‑memory Excel imports, covering basic reading, custom converters for gender and dates, and multiple Spring Boot integration patterns including controllers, listeners, constructor injection and lambda‑based approaches.

Batch ProcessingExcelJava
0 likes · 12 min read
Master Efficient Excel Imports in Java with EasyExcel and Spring Boot
Java Captain
Java Captain
Oct 13, 2019 · Backend Development

Implementing a Flexible Excel Export Utility in Java with Apache POI

This article explains how to design a reusable Java utility for exporting large volumes of data to Excel using Apache POI, covering header configuration, data transformation, cell formatting, multi‑threaded data retrieval, asynchronous processing, and provides sample code and usage instructions.

AsyncData ExportExcel
0 likes · 15 min read
Implementing a Flexible Excel Export Utility in Java with Apache POI
FunTester
FunTester
Aug 4, 2019 · Backend Development

Java Method to Read Excel Files and Convert Data to List of Maps

This article presents a Java utility that reads Excel files (both .xls and .xlsx) using Apache POI, extracts headers and numeric data into a nested List‑of‑Map structure, and includes error handling and type conversion details.

Apache POIExcelJava
0 likes · 6 min read
Java Method to Read Excel Files and Convert Data to List of Maps
FunTester
FunTester
Aug 4, 2019 · Fundamentals

Java Method for Writing Data to XLSX Files Using Apache POI

This article presents a Java method that uses Apache POI to write data into XLSX files, detailing the implementation steps, code example, and practical considerations for generating test reports with Excel in automated testing environments.

Apache POIAutomationExcel
0 likes · 3 min read
Java Method for Writing Data to XLSX Files Using Apache POI
Full-Stack Internet Architecture
Full-Stack Internet Architecture
May 22, 2019 · Backend Development

Common Java Libraries for Project Development

This article introduces a curated list of widely used Java libraries—including logging, XML, PDF, Excel, JSON, HTTP, Apache Commons, Joda‑Time, and HTML parsing tools—explaining their main features and when to choose each for backend development projects.

Apache CommonsExcelPDF
0 likes · 5 min read
Common Java Libraries for Project Development
Aotu Lab
Aotu Lab
Dec 6, 2016 · Frontend Development

How XCEL Turns Excel Data Cleaning into a High‑Performance Cross‑Platform App

XCEL is a cross‑platform Excel data‑cleaning tool built with Electron and Vue that visualizes filtering, leverages multi‑process architecture, optimizes rendering and memory usage, and provides detailed implementation steps, performance tricks, and code examples for developers.

ExcelPerformance Optimizationdata cleaning
0 likes · 25 min read
How XCEL Turns Excel Data Cleaning into a High‑Performance Cross‑Platform App
Aotu Lab
Aotu Lab
Apr 15, 2016 · Backend Development

Master Excel File Handling in Node.js with js-xlsx and excel-export

This guide compares popular Node.js npm packages for Excel file handling, recommends using js‑xlsx for parsing and excel‑export for generation, and provides detailed installation steps, core concepts, code examples, and a complete workflow for reading, converting to JSON, and writing Excel files on both server and browser environments.

BackendExcelJavaScript
0 likes · 13 min read
Master Excel File Handling in Node.js with js-xlsx and excel-export