如何在Flutter中的WebView中下载文件

4

我正在尝试通过webview_flutter下载文件,但是文件无法下载。 我已经获得了读写磁盘的权限,但是找不到文件下载的位置。

我期望文件被下载到安卓设备上。在webview_flutter文档中找不到有关下载文件的任何信息。我已经尝试了其他替代包,但它们的解决方案很混乱或已过时。

在Flutter中从WebView下载文件的标准方法是什么?

main.dart:

import 'package:flutter/material.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:webview_flutter/webview_flutter.dart';

void main() {

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  WebViewController controller = WebViewController()
  ..setJavaScriptMode(JavaScriptMode.unrestricted)
  ..setBackgroundColor(const Color(0x00000000))
  ..setNavigationDelegate(
    NavigationDelegate(
      onProgress: (int progress) {
        // Update loading bar.
      },
      onPageStarted: (String url) {},
      onPageFinished: (String url) {},
      onWebResourceError: (WebResourceError error) {}
    ),
  )
  ..loadRequest(Uri.parse('https://file-examples.com/index.php/sample-documents-download/sample-pdf-download/'));

  @override
  Widget build(BuildContext context) {
    Permission.storage.request();
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
    appBar: AppBar(title: const Text('Flutter Simple Example')),
    body: WebViewWidget(controller: controller),
  );
  }
}

嗨@PeterSchultz,我想知道你是否找到了解决办法。请告诉我。 - rashidotm
嗨 @PeterSchultz,我想知道你是否找到了解决办法。请告诉我一声。 - undefined
1个回答

0
我正在使用url_launcher
然后,我在NavigationDelegate中添加了这个。 你可以检查你的URL是否包含字符串download,.pdf等。
    onNavigationRequest: (NavigationRequest request){
      final urlString = request.url.toUpperCase();
      final uriUL = Uri.parse(request.url);
      if(urlString.contains('DOWNLOAD')){
        print(request.url);
        _launchUrl(uriUL);
        return NavigationDecision.prevent;
      }
      return NavigationDecision.navigate;
    },

检查截图示例


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接