在android中的Parse Table中上传pdf文件

时间:2014-07-16 06:17:58

标签: android parsing pdf parse-platform

我正在尝试在 Parse Table 中上传 pdf文件,然后获取该pdf文件。

我是 Parse.com sdk 的新手,我使用字节数组尝试使用图像文件,但我不知道Pdf文件,上传然后获取。< / p>

请指导我。任何教程都会非常有用

1 个答案:

答案 0 :(得分:0)

byte[] data = yourpdf;
ParseFile file = new ParseFile("filename.pdf", data);

ParseObject test = new ParseObject("TestPdf");
test.put("name", "CV");
test.put("pdfFile", file);
test.saveInBackground();

来源:Parse