Tag

File Upload

1 views collected around this technical thread.

Top Architect
Top Architect
May 23, 2025 · Backend Development

Secure File Upload and Preview with Spring Boot, Minio, and KKFile

This article demonstrates how to securely upload files to Minio, stream them for preview via KKFile without exposing the Minio endpoint, and protect download URLs with token validation, providing complete Java code examples for upload, download, and preview URL generation.

File UploadJavaMinIO
0 likes · 10 min read
Secure File Upload and Preview with Spring Boot, Minio, and KKFile
php中文网 Courses
php中文网 Courses
May 22, 2025 · Backend Development

Implementing Camera Capture Functionality with PHP and HTML

This article explains how to use PHP and HTML to access a device's camera via the Media Capture API, create a simple upload form, save captured images on the server, and display them, providing a basic example for adding interactive camera functionality to web applications.

Camera APIFile UploadMedia Capture
0 likes · 4 min read
Implementing Camera Capture Functionality with PHP and HTML
Architect's Tech Stack
Architect's Tech Stack
May 18, 2025 · Backend Development

Six Practical File Upload and Download Solutions for Spring Boot

This article presents six commonly used file upload and download techniques for Spring Boot, covering basic Multipart handling, stream-based download, integration with Alibaba Cloud OSS and MinIO, as well as high‑concurrency chunked uploads with Nginx, each accompanied by complete code examples and usage scenarios.

Chunked UploadFile UploadJava
0 likes · 16 min read
Six Practical File Upload and Download Solutions for Spring Boot
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Apr 30, 2025 · Backend Development

Master Spring Boot 3 File Upload: 5 Practical Techniques & Code Samples

This article demonstrates multiple ways to handle file uploads in Spring Boot 3, covering basic @RequestParam usage, Map and object binding, jakarta.servlet.http.Part, and @RequestPart for combined JSON and file data, complete with code snippets and practical examples.

@RequestPartCode SamplesFile Upload
0 likes · 7 min read
Master Spring Boot 3 File Upload: 5 Practical Techniques & Code Samples
Python Programming Learning Circle
Python Programming Learning Circle
Apr 26, 2025 · Operations

Handling Non‑Select Dropdowns, Dynamic IDs, and File Uploads with Selenium Python

This article demonstrates how to automate non‑select dropdowns that allow or disallow text input, locate elements with dynamic IDs or without unique attributes using XPath, overcome click‑obstruction with JavaScript, and upload files via pywinauto when standard input elements are unavailable, all with Python Selenium code examples.

File Uploadwebdriverxpath
0 likes · 7 min read
Handling Non‑Select Dropdowns, Dynamic IDs, and File Uploads with Selenium Python
Selected Java Interview Questions
Selected Java Interview Questions
Mar 27, 2025 · Backend Development

Implementing the Adapter Pattern for Multi‑Cloud OSS Storage in a Spring Boot Microservice

This article demonstrates how to use the Adapter pattern in a Spring Boot microservice to abstract multiple OSS providers such as Minio and Aliyun, including code implementations, configuration with Nacos, and a complete upload workflow with a FileService and controller.

Adapter PatternFile UploadJava
0 likes · 10 min read
Implementing the Adapter Pattern for Multi‑Cloud OSS Storage in a Spring Boot Microservice
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 27, 2025 · Backend Development

Master Large File Upload with Spring Boot 3 and Vue 3: Chunked Upload Tutorial

Learn how to implement efficient large‑file uploads by splitting files into chunks, uploading them via a Vue 3 front‑end, and handling the chunked data with Spring Boot 3 back‑end APIs, including code examples for both client‑side upload logic and server‑side chunk storage and merging.

Chunked UploadFile UploadSpring Boot
0 likes · 9 min read
Master Large File Upload with Spring Boot 3 and Vue 3: Chunked Upload Tutorial
php中文网 Courses
php中文网 Courses
Mar 20, 2025 · Backend Development

Implementing Camera Access with PHP and HTML5 Media Capture API

This article explains how to use the HTML5 Media Capture API together with PHP to access a user's camera, capture a photo, upload it to the server, and display the saved image, providing a practical example for adding interactive camera functionality to web applications.

CameraFile UploadMedia Capture API
0 likes · 5 min read
Implementing Camera Access with PHP and HTML5 Media Capture API
Selected Java Interview Questions
Selected Java Interview Questions
Mar 16, 2025 · Information Security

Integrating Apache Tika with Spring Boot for Sensitive Information Detection and Data Leakage Prevention

This article explains Apache Tika's core features, architecture, and multiple application scenarios, then provides a step‑by‑step guide to embed Tika in a Spring Boot project to extract file content, detect personal data such as ID numbers, credit cards and phone numbers using regular expressions, and protect against data leakage.

Apache TikaFile UploadJava
0 likes · 23 min read
Integrating Apache Tika with Spring Boot for Sensitive Information Detection and Data Leakage Prevention
Java Architect Essentials
Java Architect Essentials
Mar 11, 2025 · Information Security

Integrating Apache Tika with Spring Boot for Sensitive Information Detection and Data Leakage Prevention

This article demonstrates how to integrate Apache Tika into a Spring Boot application to automatically extract file content, detect sensitive data such as ID numbers, credit cards, and phone numbers using regex, and implement data leakage protection through RESTful file upload endpoints and optional front‑end UI.

Apache TikaFile UploadJava
0 likes · 24 min read
Integrating Apache Tika with Spring Boot for Sensitive Information Detection and Data Leakage Prevention
php中文网 Courses
php中文网 Courses
Mar 10, 2025 · Information Security

Security Protection Strategies and Vulnerability Mitigation for PHP Applications

This article examines essential security measures for PHP applications, covering protection against SQL injection, XSS, CSRF, unsafe file uploads, session fixation, weak passwords, error disclosure, and the importance of HTTPS, with practical code examples and configuration tips to build more resilient web services.

CSRFFile UploadHTTPS
0 likes · 8 min read
Security Protection Strategies and Vulnerability Mitigation for PHP Applications
Test Development Learning Exchange
Test Development Learning Exchange
Feb 17, 2025 · Frontend Development

Playwright Guide: Form Filling, File Upload/Download, Keyboard Shortcuts, and Validation in UI Automation

This article demonstrates how to use Playwright for UI automation by showing how to fill various form fields, upload and download files, simulate keyboard shortcuts and combinations, and handle form validation and errors, providing complete Python code examples for each scenario.

File UploadForm TestingPlaywright
0 likes · 7 min read
Playwright Guide: Form Filling, File Upload/Download, Keyboard Shortcuts, and Validation in UI Automation
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Feb 17, 2025 · Backend Development

Large File Upload with Chunking, Instant Upload, and Resume Using React, Vue and NestJS

This article explains how to implement a large‑file upload system that splits files into chunks, computes MD5 hashes for instant‑upload detection, supports breakpoint resume, and merges the chunks on the server using React or Vue on the frontend and NestJS with TypeScript on the backend.

ChunkingFile UploadMD5
0 likes · 6 min read
Large File Upload with Chunking, Instant Upload, and Resume Using React, Vue and NestJS
php中文网 Courses
php中文网 Courses
Feb 6, 2025 · Backend Development

Implementing File Upload and Download with CakePHP Middleware

This article explains how to create a CakePHP middleware class to handle file upload and download requests, register it in the application, and use a simple HTML form and URL pattern to enable users to upload files and retrieve them via a download endpoint.

CakePHPFile UploadPHP
0 likes · 6 min read
Implementing File Upload and Download with CakePHP Middleware
Architecture Digest
Architecture Digest
Dec 23, 2024 · Backend Development

Deploy kkfileviewer with Docker and Integrate MinIO in Spring Boot

This guide walks through installing the kkfileviewer Docker container, building its image, running it, and then shows how to add MinIO support to a Spring Boot application with Maven dependencies, configuration, utility classes, and REST endpoints for file upload and preview.

DockerFile UploadMinIO
0 likes · 6 min read
Deploy kkfileviewer with Docker and Integrate MinIO in Spring Boot
Top Architect
Top Architect
Nov 19, 2024 · Backend Development

Secure File Upload, Download, and Preview with Spring Boot, MinIO, and kkfile

This article explains how to securely upload files to MinIO, generate token‑protected download links, and create kkfile preview URLs using Spring Boot, while avoiding exposure of the MinIO address and adding token authentication for enhanced security.

File UploadMinIOSpring Boot
0 likes · 9 min read
Secure File Upload, Download, and Preview with Spring Boot, MinIO, and kkfile
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 16, 2024 · Frontend Development

Practical Implementation and Optimization of Large File Chunked Upload (Frontend Part)

This article presents a complete frontend solution for large file chunked uploading, covering requirement analysis, slice implementation, hash calculation with Web Workers, MerkleTree-based file identification, a PromisePool for concurrent uploads, real‑time progress tracking, and performance optimizations with detailed code examples.

Chunked UploadFile UploadTypeScript
0 likes · 21 min read
Practical Implementation and Optimization of Large File Chunked Upload (Frontend Part)
Java Architect Essentials
Java Architect Essentials
Nov 14, 2024 · Backend Development

Integrating Spring Boot with Minio: Direct Upload, Presigned URLs, Chunked Upload and File Merging

This article demonstrates how to integrate Spring Boot with Minio, covering two upload strategies (backend‑mediated and presigned‑URL direct upload), environment setup, Maven dependency, configuration classes, generating upload credentials, front‑end upload logic, chunked/instant/resumable uploads, and merging file parts.

Chunked UploadFile UploadMinIO
0 likes · 16 min read
Integrating Spring Boot with Minio: Direct Upload, Presigned URLs, Chunked Upload and File Merging
Java Tech Enthusiast
Java Tech Enthusiast
Nov 8, 2024 · Backend Development

Deploy kkfileviewer Container and Integrate MinIO with Spring Boot

This guide walks through building and running the kkfileviewer Docker container, then shows how to add MinIO to a Spring Boot application with configuration, a client bean, utility methods, and REST endpoints for uploading files and retrieving presigned preview URLs to display in the kkfileviewer UI.

DockerFile UploadJava
0 likes · 7 min read
Deploy kkfileviewer Container and Integrate MinIO with Spring Boot
Code Ape Tech Column
Code Ape Tech Column
Nov 6, 2024 · Backend Development

Implementing a Snapchat-like Self-Destructing Image Feature with Spring Boot and MySQL

This article presents a step‑by‑step guide on building a Snapchat‑style “burn after reading” image sharing system using Spring Boot, MySQL, Thymeleaf, and optional cloud storage, covering background analysis, architecture design, environment setup, code implementation, optimization, testing, and deployment.

File UploadJavaMySQL
0 likes · 19 min read
Implementing a Snapchat-like Self-Destructing Image Feature with Spring Boot and MySQL