Tag

File I/O

1 views collected around this technical thread.

Java Captain
Java Captain
Jun 8, 2025 · Backend Development

How to Read Excel Files in Java with Free Spire.XLS – Step-by-Step Guide

This tutorial explains how to automate Excel data extraction in Java using the free Free Spire.XLS library, covering installation, core classes and methods, and detailed code examples for reading a single cell, a cell range, and an entire worksheet, enabling efficient batch processing and integration with other systems.

Data ProcessingExcelFile I/O
0 likes · 7 min read
How to Read Excel Files in Java with Free Spire.XLS – Step-by-Step Guide
Raymond Ops
Raymond Ops
Apr 27, 2025 · Fundamentals

9 Powerful Python Techniques to Copy Files Efficiently

Learn nine distinct Python approaches for copying files—including shutil functions, os commands, threading, and subprocess methods—while understanding their performance implications, error handling, platform compatibility, and when to choose each technique for optimal I/O efficiency.

File I/OPythoncopyfile
0 likes · 12 min read
9 Powerful Python Techniques to Copy Files Efficiently
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2025 · Fundamentals

10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules

This article introduces ten essential Python techniques—including variable assignment and swapping, data type conversion, string manipulation, list handling, loop constructs, conditional statements, function definition, exception handling, file operations, and module imports—providing clear explanations and code examples to help beginners strengthen their programming foundation.

Data TypesFile I/OFunctions
0 likes · 10 min read
10 Classic Python Operations: Variables, Type Conversion, Strings, Lists, Loops, Conditionals, Functions, Exceptions, File I/O, and Modules
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Apr 23, 2025 · Backend Development

Efficient Large File Processing in Node.js: Stream, Buffer, and Multithreading Techniques

This article explains how to handle massive HDFS‑derived text and CSV files in Node.js by analyzing memory and CPU bottlenecks, comparing client‑side upload strategies, and presenting synchronous, callback, promise, streaming, and multithreaded worker‑thread solutions with complete code examples.

File I/ONode.jsmultithreading
0 likes · 13 min read
Efficient Large File Processing in Node.js: Stream, Buffer, and Multithreading Techniques
php中文网 Courses
php中文网 Courses
Apr 9, 2025 · Fundamentals

Comprehensive Guide to File Operations in Python

This article provides a thorough introduction to Python file operations, covering opening modes, reading and writing techniques, context managers, advanced handling like binary files and CSV processing, best practices, and practical exercises to master file I/O.

File I/OPythonfile handling
0 likes · 8 min read
Comprehensive Guide to File Operations in Python
Java Tech Enthusiast
Java Tech Enthusiast
Mar 26, 2025 · Fundamentals

Understanding PageCache: The Secret Behind Faster File Access

PageCache is an operating‑system mechanism that uses physical memory to cache disk blocks, dynamically resizing with available RAM and employing LRU replacement and read‑ahead, turning slow storage accesses into fast memory reads, yielding up to twenty‑fold speed gains for tasks such as compilation, video editing, and database operations.

File I/OLinuxOperating Systems
0 likes · 6 min read
Understanding PageCache: The Secret Behind Faster File Access
Lobster Programming
Lobster Programming
Mar 24, 2025 · Backend Development

Boost Java File Copy Performance: 5 Proven Methods Compared

Learn five Java file copy techniques—from basic streams to NIO Files.copy, FileChannel, and RandomAccessFile—detailing their implementations, performance differences, and ideal use cases for small, large, and massive files, helping you choose the most efficient method for your project.

BufferedStreamFile I/OFileChannel
0 likes · 6 min read
Boost Java File Copy Performance: 5 Proven Methods Compared
IT Services Circle
IT Services Circle
Mar 21, 2025 · Fundamentals

Understanding Linux PageCache: How the OS Accelerates File Reads and Writes

PageCache, a kernel-managed memory cache that stores disk data in RAM, dramatically speeds up file operations by turning repeated reads and writes into pure memory accesses, and its dynamic sizing, read‑ahead, and LRU eviction are demonstrated through Linux experiments with large files.

File I/OLinuxPageCache
0 likes · 9 min read
Understanding Linux PageCache: How the OS Accelerates File Reads and Writes
Test Development Learning Exchange
Test Development Learning Exchange
Mar 5, 2025 · Fundamentals

Comprehensive Guide to File Operations in Python

This article provides a thorough introduction to Python file operations, covering basic concepts, opening and closing files, reading and writing techniques, advanced methods like binary handling and file pointer control, and includes practical code examples and best‑practice recommendations.

File I/OPythoncode examples
0 likes · 8 min read
Comprehensive Guide to File Operations in Python
php中文网 Courses
php中文网 Courses
Mar 4, 2025 · Backend Development

Advanced PHP File and Directory Operations

This article provides a comprehensive guide to advanced PHP file and directory handling, covering reading and writing files, retrieving file metadata, manipulating file pointers, traversing and managing directories, handling uploads, error handling, and best practices with clear code examples.

File I/OPHPbackend
0 likes · 6 min read
Advanced PHP File and Directory Operations
Python Programming Learning Circle
Python Programming Learning Circle
Feb 28, 2025 · Fundamentals

Techniques for Efficient Large File Processing in Python

Processing large files efficiently in Python requires techniques such as line-by-line iteration, chunked reads, generators, buffered I/O, and streaming, which help avoid memory errors, improve speed, and optimize resources for tasks like log analysis, data scraping, and real-time API handling.

File I/OLarge FilesPython
0 likes · 5 min read
Techniques for Efficient Large File Processing in Python
Test Development Learning Exchange
Test Development Learning Exchange
Feb 10, 2025 · Fundamentals

Python Standard Library: File System and OS Modules Overview

This article provides a concise tutorial on Python's standard library modules for interacting with the operating system and handling files, covering os, os.path, shutil, glob, pathlib, io, tempfile, fileinput, pickle, csv, zipfile, and tarfile with example code snippets.

File I/OModulesPython
0 likes · 6 min read
Python Standard Library: File System and OS Modules Overview
Test Development Learning Exchange
Test Development Learning Exchange
Jan 14, 2025 · Fundamentals

Common Image File Formats and How to Read/Write Them with OpenCV

This article introduces several common image file formats such as BMP, PNG, JPEG, TIFF, WebP, and others, explains their typical use cases, and provides Python OpenCV code snippets for reading, displaying, and saving images in each format.

File I/OImage FormatsPython
0 likes · 6 min read
Common Image File Formats and How to Read/Write Them with OpenCV
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Dec 31, 2024 · Backend Development

Master CSV Processing in Spring Boot 3 with Super CSV – Full Code Guide

This article provides a comprehensive tutorial on using the Super CSV library in Spring Boot 3, covering Maven dependencies, core APIs for reading and writing CSV files, cell processors, handling irregular data, and a complete Spring MVC controller example for CSV download, all illustrated with code snippets and screenshots.

CSVData ProcessingFile I/O
0 likes · 14 min read
Master CSV Processing in Spring Boot 3 with Super CSV – Full Code Guide
Test Development Learning Exchange
Test Development Learning Exchange
Nov 29, 2024 · Fundamentals

Python File Handling: Common Text Processing Scripts

This article presents a comprehensive collection of Python file handling examples, covering basic reading and writing, appending, line extraction, file copying, moving, deletion, directory management, and advanced text processing techniques such as searching, replacing, and statistical analysis, all illustrated with clear code snippets.

File I/OPythonfile management
0 likes · 17 min read
Python File Handling: Common Text Processing Scripts
Test Development Learning Exchange
Test Development Learning Exchange
Nov 15, 2024 · Fundamentals

Python File I/O Operations Tutorial

This tutorial covers essential Python file operations including opening/closing files, reading/writing text files, and various file manipulation techniques with practical code examples.

Data ProcessingFile I/Ocode examples
0 likes · 4 min read
Python File I/O Operations Tutorial
Top Architect
Top Architect
Nov 5, 2024 · Backend Development

Spring Boot Utility Classes Overview: Assertions, ObjectUtils, StringUtils, CollectionUtils, FileCopyUtils, ReflectionUtils, and AopUtils

This article introduces a comprehensive set of Spring Boot utility classes—including assertion helpers, object and string utilities, collection operations, file and resource handling, reflection tools, and AOP utilities—providing code examples and usage guidelines for Java backend development.

AssertionsBackend DevelopmentFile I/O
0 likes · 16 min read
Spring Boot Utility Classes Overview: Assertions, ObjectUtils, StringUtils, CollectionUtils, FileCopyUtils, ReflectionUtils, and AopUtils
Test Development Learning Exchange
Test Development Learning Exchange
Nov 4, 2024 · Fundamentals

Python Practical Guide: File I/O, CSV, JSON, HTTP Requests, SQLite, Scheduling, Logging, Argument Parsing, Compression, Subprocess, DateTime, Email, Image Processing, NumPy, Pandas, Regex, System Info, Socket Programming, and AsyncIO

This comprehensive Python tutorial demonstrates essential techniques such as file reading and writing, CSV and JSON handling, HTTP requests, SQLite operations, task scheduling, logging, command‑line parsing, compression, subprocess management, date‑time handling, email sending, image manipulation, numerical computing, data analysis, regular expressions, system information retrieval, socket networking, and asynchronous programming.

Data ProcessingFile I/ONetworking
0 likes · 9 min read
Python Practical Guide: File I/O, CSV, JSON, HTTP Requests, SQLite, Scheduling, Logging, Argument Parsing, Compression, Subprocess, DateTime, Email, Image Processing, NumPy, Pandas, Regex, System Info, Socket Programming, and AsyncIO
Deepin Linux
Deepin Linux
Nov 1, 2024 · Fundamentals

Will Data Be Lost When a Process Crashes During File Write?

This article examines the conditions under which data may be lost when a Linux process crashes while writing a file, explaining page cache behavior, the roles of stdio versus system calls, dirty page handling, write‑back mechanisms, and strategies such as fflush, fsync, and direct I/O to ensure data integrity.

Data IntegrityFile I/OLinux
0 likes · 22 min read
Will Data Be Lost When a Process Crashes During File Write?
Java Architect Essentials
Java Architect Essentials
Oct 31, 2024 · Backend Development

How to Read Excel, Word, PDF, and Text Files in Java

This article explains how to use Java libraries such as Apache POI, PDFBox, and EasyExcel to read Excel, DOC/DOCX, PDF, and plain text files, providing complete code examples, required Maven dependencies, and step‑by‑step usage instructions for each file type.

Apache POIExcelFile I/O
0 likes · 13 min read
How to Read Excel, Word, PDF, and Text Files in Java