我使用图形 API 将一些示例上传到 OneDrive。我能够通过 OkHttp 成功上传文件(文本文件)。但是,当涉及到图像时,我在打开图像后收到此消息
Error interpreting JPEG image file (Not a JPEG file: starts with 0xef 0xbf)
将图像上传到 onedrive 后。.svg
格式图像上传成功,但.jpg, .png
格式图像在上传到一个驱动器时损坏。
以下是我的做法。
将图像转换为字节数组,然后将该字节数组转换(写入)为上传文件。
String url = "https://graph.microsoft.com/v1.0/drive/root:/" + step.file_name + ":/content";
Request request = new Request.Builder().url(url)
.put(RequestBody.create(MediaType.parse("image/*"), step.file_data))
//step.file_data contains the byte array.
.addHeader("Authorization", String.format("Bearer %s", step.getAccess_token()))
.build();
Response response = okHttpClient.newCall(request).execute();
这种方法适用于文本文件和 .svg 格式的图像,但不适用于其他格式的图像。我浏览了许多参考资料/网站,但找不到方法。可能是什么原因?!先感谢您