Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
366 views
in Technique[技术] by (71.8m points)

flutter - GDrive api: Whenever the file name contains special utf-8 chars -> "Content size exceeds specified contentLength. [...]"


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Answer:

The special character is endoded as two bytes. You need to account for this in the content length.

Fix:

Change:

var response = await drive.files.create(
      fileToUpload,
      uploadMedia:
          ga.Media(uploadFile.openRead(), uploadFile.lengthSync()),
    );

to:

var response = await drive.files.create(
      fileToUpload,
      uploadMedia:
          ga.Media(uploadFile.openRead(), uploadFile.lengthSync() + 1),
    );

I hope this is helpful to you!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...