- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to convert a PDF to byte array in Java?
You can read data from a PDF file using the read() method of the FileInputStream class this method requires a byte array as a parameter.
Example
import java.io.File; import java.io.FileInputStream; import java.io.ByteArrayOutputStream; public class PdfToByteArray { public static void main(String args[]) throws Exception { File file = new File("sample.pdf"); FileInputStream fis = new FileInputStream(file); byte [] data = new byte[(int)file.length()]; fis.read(data); ByteArrayOutputStream bos = new ByteArrayOutputStream(); data = bos.toByteArray(); } }
Sample.pdf
- Related Articles
- How to convert BLOB to Byte Array in java?
- How to convert Byte Array to Image in java?
- How to convert Image to Byte Array in java?
- How to convert InputStream to byte array in Java?
- How to convert a byte array to hex string in Java?
- How to convert a byte array to a hex string in Java?
- How to convert an object to byte array in java?
- How to convert java bitmap to byte array In android?
- How to convert hex string to byte Array in Java?
- How to convert an input stream to byte array in java?
- Convert byte Array to Hex String in Java
- Convert Hex String to byte Array in Java
- Java Program to convert byte[] array to String
- Java Program to convert String to byte array
- Java program to convert Byte array to IP Address

Advertisements