[OpenXML4J] OpenXML4J moves into Beta
The OpenXML4J project begins the open source adventure in August 2006. Since then, some people (including some POI developers - they are truly great guys !) join the project to contribute to OpenXML4J, a Java API for the Office Open XML file format IS 29500.
Today OpenXML4J moves to Beta ! You can download these new builds which fix some bugs from the Alpha version
here.

You can visit the official project website at : http://www.openxml4j.org
OpenXML4J currently handles the Open Packaging Convention of the Open XML format like this :
// Open the package
Package p = Package.open("Sample.docx", PackageAccess.READ);
// Get documents core properties part relationship
PackageRelationship corePropertiesRelationship = p .getRelationshipsByType(PackageRelationshipTypes.CORE_DOCUMENT) .getRelationship(0);
// Get core properties part from the relationship.
PackagePart coreDocument = p.getPart(corePropertiesRelationship);
// Retrieve and display the URI and the content type of the core
// properties part of the document.
System.out.println(coreDocument.getUri() + " -> " + coreDocument.getContentType());
You want to contribute or help the project ? Contact us : julien@wygwam.com
Ce post vous a plu ? Ajoutez le dans vos favoris pour ne pas perdre de temps à le retrouver le jour où vous en aurez besoin :