【问题标题】:Android API PdfDocument not writing data in file using writeTo(outputStream)Android API PdfDocument 未使用 writeTo(outputStream) 将数据写入文件
【发布时间】:2017-08-09 18:48:08
【问题描述】:

创建pdf文件的按钮

//button listener for creating pdf file

convert2PDF.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
//pdf document created

            PdfDocument document = new PdfDocument();
//pageinfo created 

            PdfDocument.PageInfo pageInfo = new PdfDocument.PageInfo.Builder(800, 800, 1).create();
//page created based on pageinfo

            PdfDocument.Page page = document.startPage(pageInfo);
//ImageView used to draw bitmap on page's canvas

            ImageView imageView = new ImageView(context);
//setting imageView height weight equal to page height weight

            imageView.setMaxHeight(800);
            imageView.setMaxWidth(800);
//setting the imageView to bitmap selected from list
     imageView.setImageBitmap(BitmapFactory.decodeFile(selectedFileList.get(0).getPath()));
//imageView drawn on canvas
            imageView.draw(page.getCanvas());
//page finished 
            document.finishPage(page);

            File result = null;
            try {

                result = File.createTempFile("afew", ".pdf", 
context.getCacheDir());
//writing the pdf doc to temp file
                document.writeTo(new BufferedOutputStream(new 
FileOutputStream(result)));
            } catch (FileNotFoundException e) {
                Toast.makeText(getApplicationContext(), e.getMessage(), 
Toast.LENGTH_SHORT).show();
            } catch (IOException e) {
                Toast.makeText(getApplicationContext(), 
e.getMessage(),Toast.LENGTH_SHORT).show();
            }
            document.close();
//main file 

            File a = new File("/storage/sdcard/b.pdf");
//funct transfer used for transferring bytes from one file to another
            transfer(result, a);
//set content of layout with imageView

            context.setContentView(imageView);
    }});

**我尝试运行上面的代码,但在 /storage/sdcard/b.pdf 创建的文件始终为空**

我在这里搜索了很多答案,但没有一个有效

有没有办法解决这个问题,请帮忙

【问题讨论】:

    标签: android api pdf documents


    【解决方案1】:

    哇 3 天后找到答案

    protected File doInBackground(ArrayList<File>... params) {
            File output = null;
            PdfDocument doc = new PdfDocument();
            ArrayList<Bitmap> images = new ArrayList<Bitmap>();
            PdfDocument.Page page = null;
            ArrayList<Bitmap> bitmaps = null;
            Canvas canvas = null;
            File outputDir = new File(getFilesDir()+"/Output/PDF");
            if(!outputDir.exists()){
                outputDir.mkdirs();
            }
            Random rand = new Random();
            output = new File(getFilesDir()+"/Output/PDF/data-"+rand.nextInt()+".pdf");
            for(File a: params[0]){
                BitmapFactory.Options options = new BitmapFactory.Options();
                options.inJustDecodeBounds = true;
                BitmapFactory.decodeFile(a.getPath(), options);
                int imageHeight = options.outHeight;
                int imageWidth = options.outWidth;
                String imageType = options.outMimeType;
                Bitmap b = decodeSampledBitmapFromResource(a, imageWidth/2, imageHeight/2);
                if(b!=null){
                    images.add(b);
                }
            }
            int i = 0;
            for(Bitmap a: images){
                PdfDocument.PageInfo pageInfo = new PdfDocument.PageInfo.Builder(a.getWidth(), a.getHeight(), i++).create();
                page = doc.startPage(pageInfo);
                page.getCanvas().drawBitmap(a, 0, 0, new Paint(Paint.ANTI_ALIAS_FLAG));
                doc.finishPage(page);
            }
            try{
                FileOutputStream out = new FileOutputStream(output);
                doc.writeTo(out);
                out.flush();
                out.close();
            }catch(FileNotFoundException e){}
            catch(IOException e){}
            doc.close();
            return output;
        }
    

    【讨论】:

      猜你喜欢
      • 2011-06-18
      • 1970-01-01
      • 2019-09-13
      • 2022-01-20
      • 2021-01-15
      • 1970-01-01
      • 2011-12-23
      • 1970-01-01
      • 2011-09-04
      相关资源
      最近更新 更多