Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a URL Id which generates a PDF .. I want to save that pdf file somehwere in my server using java . The PDF is getting generated dynamically so its not available on server .

share|improve this question

closed as not a real question by Till Helge, Jayan, Ricardo Lohmann, John Koerner, Abhinav Sarkar Jan 16 at 4:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

Try this code snippets:

URL pdfUrl = new URL("http://www.website.com/pdf_location.pdf");
ReadableByteChannel rbc = Channels.newChannel(pdfUrl.openStream());
FileOutputStream fos = new FileOutputStream("file.pdf");
fos.getChannel().transferFrom(rbc, 0, 1 << 24);

Replace http://www.website.com/pdf_location.pdf with actual PDF URL. Replace file.pdf with name and path of your PDF file.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.