惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
腾讯CDC
D
Docker
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
The Cloudflare Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
量子位
美团技术团队
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Flutter File Uploads Made Easy: Working with Multipart APIs
Codexlancers · 2026-06-18 · via DEV Community

File uploads are one of the most common requirements in real-world Flutter applications-whether it's uploading profile images, documents, or media files.

At our company, we've implemented file upload systems across multiple production apps, and one thing is clear:

Most developers don't struggle with the concept-they struggle with clean implementation.

In this article, we'll break down Multipart file uploads in Flutter using the latest stable packages in a simple, production-ready way.

Why Multipart Requests Matter

When sending data to APIs:

  • JSON works for text data
  • Files (images, PDFs, videos) require multipart/form-data

This format allows sending:

  • Normal fields (userId, email, etc.)
  • Files (binary data)

in a single request.

Real-World Use Cases

We've used multipart uploads in:

  • Profile image uploads
  • KYC verification documents
  • E-commerce product images
  • Chat attachments
  • Resume uploads

Dependencies (Latest Versions)

dependencies:
  http: ^1.6.0
  image_picker: ^1.2.1
  path: ^1.9.1

Step 1: Picking an Image

With the latest image_picker, the API remains stable while ensuring null safety + proper typing.

import 'package:image_picker/image_picker.dart';

final ImagePicker _picker = ImagePicker();

Future<XFile?> pickImage() async {
  try {
    final XFile? image = await _picker.pickImage(
      source: ImageSource.gallery,
      imageQuality: 80,
    );

    return image;
  } catch (e) {
    print("Error picking image: $e");
    return null;
  }
}

Step 2: Multipart Upload Using http

The http ^1.6.0 package still uses MultipartRequest, but we'll structure it more cleanly and safely.

import 'dart:io';
import 'package:http/http.dart' as http;
import 'package:path/path.dart' as path;

Future<void> uploadFile(XFile file) async {
  try {
    var uri = Uri.parse("https://yourapi.com/upload");

    var request = http.MultipartRequest("POST", uri);

    // Optional fields
    request.fields['userId'] = "12345";

    // File name handling
    String fileName = path.basename(file.path);

    // Attach file
    request.files.add(
      await http.MultipartFile.fromPath(
        'file',
        file.path,
        filename: fileName,
      ),
    );

    // Send request
    var streamedResponse = await request.send();

    // Convert response stream
    var response = await http.Response.fromStream(streamedResponse);

    if (response.statusCode == 200) {
      print("Upload successful");
      print("Response: ${response.body}");
    } else {
      print("Upload failed: ${response.statusCode}");
      print("Response: ${response.body}");
    }
  } catch (e) {
    print("Upload error: $e");
  }
}

Step 3: UI Integration

ElevatedButton(
  onPressed: () async {
    final file = await pickImage();

    if (file != null) {
      await uploadFile(file);
    }
  },
  child: const Text("Upload File"),
)

Important Validation (Production Ready)

Always validate file size before uploading:

if (file.lengthSync() > 10 * 1024 * 1024) {
  print("File too large (Max 10MB allowed)");
  return;
}

What Changed in the Latest Approach?

With updated packages, best-practice improvements include:

✔ Proper Response Conversion

http.Response.fromStream(streamedResponse)

✔ Safe Filename Extraction

path.basename(file.path)

Common Mistakes Developers Still Make

1. Not Converting Streamed Responses

Multipart responses come as streams. Ignoring this often results in unreadable output.

2. Missing Filename in Upload Requests

Some servers reject files without explicit filenames.

3. No Error Handling Around Image Picker

Image selection can fail or be cancelled by the user.

4. Uploading Oversized Files

Always validate file size before sending requests.

Best Practices We Follow

At scale, we always ensure:

  • Validate files before upload
  • Use proper filename handling
  • Convert response streams properly
  • Handle cancelled selections gracefully
  • Keep upload logic separated from UI
  • Use HTTPS only

Final Thoughts

File uploads in Flutter aren't complicated—but implementing them correctly makes a huge difference in production applications.

Once you understand how multipart requests work, the workflow becomes straightforward:

  1. Pick a file
  2. Attach it to a request
  3. Send it securely to the server

With Flutter's latest stable packages like http, image_picker, and path, it's possible to build a clean and reliable upload system without unnecessary complexity.

At our company, this exact approach is used across multiple production apps where performance, maintainability, and reliability are critical.