Em muốn hỏi về cách đọc file PDF trong Java thử dùng InputStream nhưng vẫn chưa được
InputStream in=new FileInputStream("input.pdf");
FileOutputStream fos = new FileOutputStream(new File("output.txt"));
int length = -1;
byte[] buffer = new byte[1024];// buffer for portion of data from connection
while ((length = in.read(buffer)) > -1) {
fos.write(buffer, 0, length);
}
fos.close();
Có cách nào khác để đọc file PDF không a?