第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將 PDF 文件上傳到 Parse 服務(wù)器?

如何將 PDF 文件上傳到 Parse 服務(wù)器?

千巷貓影 2023-09-13 17:58:06
我需要幫助在 android Studio 中使用 JAVA 將 pdf 文件上傳到解析服務(wù)器。我嘗試使用以下代碼:private ParseObject uploadPDFToParse(File PDFFile, ParseObject po, String columnName){    if(PDFFile != null){        Log.d("EB", "PDFFile is not NULL: " + PDFFile.toString());        ByteArrayOutputStream out = new ByteArrayOutputStream();        BufferedInputStream in = null;        try {            in = new BufferedInputStream(new FileInputStream(PDFFile));        } catch (FileNotFoundException e) {            e.printStackTrace();        }        int read;        byte[] buff = new byte[1024];        try {            while ((read = in.read(buff)) > 0)            {                out.write(buff, 0, read);            }        } catch (IOException e) {            e.printStackTrace();        }        try {            out.flush();        } catch (IOException e) {            e.printStackTrace();        }        byte[] pdfBytes = out.toByteArray();        // Create the ParseFile        ParseFile file = new ParseFile(PDFFile.getName() , pdfBytes);        po.put(columnName, file);        // Upload the file into Parse Cloud        file.saveInBackground();        po.saveInBackground();    }    return po;}
查看完整描述

1 回答

?
萬(wàn)千封印

TA貢獻(xiàn)1891條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試以下代碼并讓我知道:


private ParseObject uploadPDFToParse(File PDFFile, ParseObject po, String columnName){


    if(PDFFile != null){

        Log.d("EB", "PDFFile is not NULL: " + PDFFile.toString());

        int size = (int) file.length();

        byte[] pdfBytes = new byte[size];


        try {

            BufferedInputStream buf = new BufferedInputStream(new FileInputStream(file));

            buf.read(pdfBytes, 0, pdfBytes.length);

            buf.close();

        } catch (FileNotFoundException e) {

            e.printStackTrace();

        } catch (IOException e) {

            e.printStackTrace();

        }

        // Create the ParseFile

        ParseFile file = new ParseFile(PDFFile.getName() , pdfBytes);

        po.put(columnName, file);


        // Upload the file into Parse Cloud

        file.save();

        po.saveInBackground();

    }

    return po;

}


查看完整回答
反對(duì) 回復(fù) 2023-09-13
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)