gpt4 book ai didi

android - 如何将 PdfDocument 对象保存到 android 中的文件中?

转载 作者:搜寻专家 更新时间:2023-11-01 08:41:30 24 4
gpt4 key购买 nike

在我的应用程序中,我在按钮单击事件中创建了一个 PDF 文档。我使用打印框架打印该文档。所有这些都工作正常。我需要的是,我想将该 pdf 文档保存到一个文件夹中我的手机存储空间。如何执行此操作,我不知道如何将此 pdf 保存到文件中。谁能帮我解决这个问题?提前致谢。

我生成pdf的代码

public class CustomPrintActivity extends Activity {





@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_custom_print);
}



public void printDocument(View view)
{
PrintManager printManager = (PrintManager) this
.getSystemService(Context.PRINT_SERVICE);

String jobName = this.getString(R.string.app_name) +
" Document";

printManager.print(jobName, new MyPrintDocumentAdapter(this),
null);
}
public class MyPrintDocumentAdapter extends PrintDocumentAdapter {
Context context;
private int pageHeight;
private int pageWidth;
public PdfDocument myPdfDocument;
public int totalpages = 1;


public MyPrintDocumentAdapter(Context context) {
this.context = context;
}

@Override
public void onLayout(PrintAttributes oldAttributes,
PrintAttributes newAttributes,
CancellationSignal cancellationSignal,
LayoutResultCallback callback,
Bundle metadata) {


myPdfDocument = new PrintedPdfDocument(context, newAttributes);

pageHeight =
newAttributes.getMediaSize().getHeightMils() / 1000 * 72;
pageWidth =
newAttributes.getMediaSize().getWidthMils() / 1000 * 72;

if (cancellationSignal.isCanceled()) {
callback.onLayoutCancelled();
return;
}

if (totalpages > 0) {
PrintDocumentInfo.Builder builder = new PrintDocumentInfo
.Builder("print_output.pdf")
.setContentType(PrintDocumentInfo.CONTENT_TYPE_DOCUMENT)
.setPageCount(totalpages);

PrintDocumentInfo info = builder.build();
callback.onLayoutFinished(info, true);
} else {
callback.onLayoutFailed("Page count is zero.");
}
}


@Override
public void onWrite(final PageRange[] pageRanges,
final ParcelFileDescriptor destination,
final CancellationSignal cancellationSignal,
final WriteResultCallback callback) {

for (int i = 0; i < totalpages; i++) {
if (pageInRange(pageRanges, i)) {
PdfDocument.PageInfo newPage = new PdfDocument.PageInfo.Builder(pageWidth,
pageHeight, i).create();

PdfDocument.Page page =
myPdfDocument.startPage(newPage);

if (cancellationSignal.isCanceled()) {
callback.onWriteCancelled();
myPdfDocument.close();
myPdfDocument = null;
return;
}
drawPage(page, i);
myPdfDocument.finishPage(page);

}
}

try {
myPdfDocument.writeTo(new FileOutputStream(
destination.getFileDescriptor()));

/* String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/cookbook";

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

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


File file = new File(dir, "recipe.pdf");
FileOutputStream fOut = new FileOutputStream(file);
myPdfDocument.writeTo(fOut);

FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(myPdfDocument);
bw.close();*/


} catch (IOException e) {
callback.onWriteFailed(e.toString());
return;
} finally {
myPdfDocument.close();
myPdfDocument = null;
}

callback.onWriteFinished(pageRanges);

}

private boolean pageInRange(PageRange[] pageRanges, int page) {
for (int i = 0; i < pageRanges.length; i++) {
if ((page >= pageRanges[i].getStart()) &&
(page <= pageRanges[i].getEnd()))
return true;
}
return false;
}

private void drawPage(PdfDocument.Page page,
int pagenumber) {
Canvas canvas = page.getCanvas();

pagenumber++; //

int titleBaseLine = 90;
int leftMargin = 50;

/*Drawable icon = getResources().getDrawable(R.drawable.pot);
icon.setBounds(leftMargin - 40, 40, 60, 80);
icon.getIntrinsicHeight();
icon.getIntrinsicWidth();

icon.draw(canvas);*/


Paint paint = new Paint();
paint.setColor(Color.BLACK);

paint.setTextSize(18);
Typeface fontRegular = Typeface.createFromAsset(getAssets(), "Roboto-Regular.ttf");

paint.setTypeface(fontRegular);
canvas.drawText("PDF SAMPLE", leftMargin, titleBaseLine, paint);
paint.setTextSize(14);
canvas.drawText("PDF LINE NO 1", leftMargin, titleBaseLine + 30, paint);

paint.setTextSize(12);
canvas.drawText("PDF LINE NO 1", leftMargin, titleBaseLine + 50, paint);

paint.setTextSize(14);
canvas.drawText("PDF LINE NO 1", leftMargin, titleBaseLine + 80, paint);

paint.setTextSize(12);
canvas.drawText("PDF LINE NO 1", leftMargin, titleBaseLine + 100, paint);


}
}



}

enter image description here

最佳答案

使用这个方法。

 public void saveFile( String fileName, PdfDocument document) {

try {

File mypath=new File( Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),"filename.pdf");
document.writeTo(new FileOutputStream(mypath));

document.close();

}

关于android - 如何将 PdfDocument 对象保存到 android 中的文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32136963/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com