获取Parse.com图像文件的链接

Dav*_*vid 2 android image file parse-platform

我的表中有File列.

该文件代表图像.

文件没问题,我可以把它作为字节数组.

我可以获得此图像的直接(网络)链接吗?

Héc*_*mos 7

您可以使用该getUrl()方法获取文件的URL .因此,如果imageFile是a ParseFile,您将以这种方式获取URL:

imageFile.getUrl();
Run Code Online (Sandbox Code Playgroud)