I’m creating an XLS report using JasperReports with code: I need to remove Software information from the xls file metadata The result of running exiftool Vinculaciones.xls command: Answer Try adding these lines: This won’t remove the Software metadata field, but it would put an empty value for it. If you want to completely remove the field you’ll have to change/extend
Tag: metadata
BasicFileAttributes vs BasicFileAttributeView in Java
What is the difference between these two interfaces? BasicFileAttributes vs BasicFileAttributeView I understand that they serve to retrieve basic metadata from a file, but what actually differs from each other? EDIT: I previously meant that in the following example the 2 interfaces are used interchangeably. Is there any difference at all? besides the fact that in order to access the
Read Image Metadata from single file with Java
I want to read image metadata from a single file. I tried the following code: http://johnbokma.com/java/obtaining-image-metadata.html When I run it, I get build successful but nothing happens. Please help 🙂 Answer You haven’t specified the path to the file correctly. The change below should indicate this! EDIT – Simpler code example We are now statically defining which file to use.