0

このコードが Geneymotion エミュレータでは機能するが、実際の Android デバイスでは機能しない理由を説明できる人はいますか? コードはエミュレーターで完全に機能します。問題はありませんでした。実際のデバイスで機能しない理由について完全に混乱しています。

「PDFの作成」ボタンがクリックされたときに呼び出されるメソッドは次のとおりです。

    try {

        String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/invoices";

        File dir = new File(path);
        if(!dir.exists())
            dir.mkdirs();

        Log.d("PDFCreator", "PDF Path: " + path);

        File delete = new File(dir, "invoice.pdf");
        if (delete.exists())
            delete.delete();

        File file = new File(dir, "invoice.pdf");
        FileOutputStream fOut = new FileOutputStream(file);

        PdfWriter.getInstance(doc, fOut);

        //open the document
        doc.open();
        Log.d("test", "PDF Doccument Opened for input");

エミュレーターで: - [PDF の作成] ボタンをクリックすると、電子メール インテントが呼び出され、使用する電子メール クライアントを選択して、それを介して PDF を送信できます。

実際の Android デバイス: 実際のデバイスで [PDF の作成] をクリックしても、まったく何も起こりません。

問題は、PDF を保存しているディレクトリを中心に展開している可能性があると思いますが、解決できていません。

誰かが私を助けることができれば、それは大歓迎です。前もって感謝します。

注: DroidText ライブラリを使用して PDF を生成しています。

実際のデバイスでのテストからのログには、次のように記載されています。

11-05 21:09:14.839  10375-10375/motawaze.com.invoicepdf D/dalvikvm﹕ GC_EXTERNAL_ALLOC freed 93K, 47% free 2913K/5447K, external 0K/0K, paused 30ms
11-05 21:09:25.989  10375-10375/motawaze.com.invoicepdf D/CLIPBOARD﹕ Hide Clipboard dialog at Starting input: finished by someone else... !
11-05 21:09:29.849  10375-10378/motawaze.com.invoicepdf D/dalvikvm﹕ GC_CONCURRENT freed 153K, 47% free 3043K/5639K, external 171K/1281K, paused 7ms+2ms
11-05 21:09:39.899  10375-10378/motawaze.com.invoicepdf D/dalvikvm﹕ GC_CONCURRENT freed 351K, 48% free 3105K/5895K, external 171K/1281K, paused 7ms+3ms
11-05 21:09:53.639  10375-10375/motawaze.com.invoicepdf D/test﹕ set the fields for PDF input
11-05 21:09:53.649  10375-10375/motawaze.com.invoicepdf D/test﹕ set the document
11-05 21:09:53.669  10375-10375/motawaze.com.invoicepdf D/test﹕ set the calender
11-05 21:09:53.669  10375-10375/motawaze.com.invoicepdf D/PDFCreator﹕ PDF Path: /mnt/sdcard/Download/invoices
11-05 21:09:53.669  10375-10375/motawaze.com.invoicepdf E/PDFCreator﹕ ioException:java.io.FileNotFoundException: /mnt/sdcard/Download/invoices/Invoice.pdf (No such file or directory)
11-05 21:10:31.420  10375-10378/motawaze.com.invoicepdf D/dalvikvm﹕ GC_CONCURRENT freed 358K, 48% free 3152K/5959K, external 171K/1281K, paused 7ms+2ms
4

2 に答える 2

1

チャットでも言われた通り。PDF が作成されていないように見えるため、FileNotFoundException. PDF 作成コードを調べます。それが問題です。

次の行を変更します。

 if(!dir.exists())
     dir.mkdirs();

に:

 boolean created = false;
 if(!dir.exists())
     created = dir.mkdirs();

 if(created)
  Log.d("test", "Path created");

これにより、ディレクトリが作成されているかどうかがチェックされます。

于 2015-11-05T04:36:23.820 に答える
0

このコードはあなたを助けるかもしれません。

PDF作成にはDroidText.0.2.jarを使用しています。

public void createPDF()
    {
        Document doc = new Document();

        try {
            path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/droidText";
//            File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);

            File dir = new File(path);
            if(!dir.exists())
                dir.mkdirs();

            Log.d("PDFCreator", "PDF Path: " + path);


            file = new File(path, "HomeInventory.pdf");
            FileOutputStream fOut = new FileOutputStream(file);

            PdfWriter.getInstance(doc, fOut);

            //open the document
            doc.open();


            Paragraph p1 = new Paragraph("Hi! I am generating my first PDF using DroidText");
            Font paraFont= new Font(Font.COURIER);
            p1.setAlignment(Paragraph.ALIGN_CENTER);
            p1.setFont(paraFont);

            //add paragraph to document
            doc.add(p1);

            Paragraph p2 = new Paragraph("This is an example of a paragraph");
            Font paraFont2= new Font(Font.COURIER,14.0f, Color.GREEN);
            p2.setAlignment(Paragraph.ALIGN_CENTER);
            p2.setFont(paraFont2);

            doc.add(p2);

            ByteArrayOutputStream stream = new ByteArrayOutputStream();
//            Bitmap bitmap = BitmapFactory.decodeResource(getBaseContext().getResources(), R.drawable.android);
            Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.action_search);
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100 , stream);
            Image myImg = Image.getInstance(stream.toByteArray());
            myImg.setAlignment(Image.MIDDLE);
            //add image to document
            doc.add(myImg);

            //set footer
            Phrase footerText = new Phrase("This is an example of a footer");
            HeaderFooter pdfFooter = new HeaderFooter(footerText, false);
            doc.setFooter(pdfFooter);



        } catch (DocumentException de) {
            Log.e("PDFCreator", "DocumentException:" + de);
        } catch (IOException e) {
            Log.e("PDFCreator", "ioException:" + e);
        }
        finally
        {
            doc.close();
        }
    }

このように作成したPDFファイルをメールに添付してください。

String[] mailto = {"me@gmail.com"};
                Uri uri = Uri.fromFile(file);

                Intent emailIntent = new Intent(Intent.ACTION_SEND,Uri.parse("mailto:"));
                emailIntent.setType("text/plain");
                emailIntent.putExtra(Intent.EXTRA_EMAIL, mailto);
                emailIntent.putExtra(Intent.EXTRA_SUBJECT, "My Subject");
                emailIntent.putExtra(Intent.EXTRA_TEXT, "My Body");

                emailIntent.putExtra(Intent.EXTRA_STREAM, uri);

                emailIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // this will make such that when user returns to your app, your app is displayed, instead of the email app.
                getActivity().startActivity(emailIntent);
于 2016-05-09T08:15:32.053 に答える