I'm working in a framework that makes extensive use of excel documents, but the only imports it's using to do so are listed below:
java.io.*;
java.util.*;
java.util.regex.*;
java.util.zip.*;
javax.xml.parsers.*;
javax.xml.transform.*;
javax.xml.transform.dom.*;
javax.xml.transform.stream.*;
org.w3c.dom.*;
Because my workplace may not allow me to get the apache poi jar, how would I even begin to assemble an excel document using the above libraries?
The framework I'm working in is PRPC 7.x - most of the code it uses is proprietary and either hidden or incredibly inconvenient to get to, so it's rough trying to follow the breadcrumbs and mimic existing functionality.