Can I create linearized PDFs in JAVA using PDFNet?

Q: The need of my company is a JAVA PDF library which contains the option to create linearized PDF.
Can you tell me which product could answer to my need ?

A: Using PDFNet SDK you can create linearized and optimized PDFs in JAVA.

For sample code please see:
http://www.pdftron.com/pdfnet/samplecode.html#AddImage

The key is to specify e_linearized flag in the call to PDFDoc.save():

doc.save(“my.pdf”), SDFDoc.e_linearized, null);

For optimizing PDF (e.g. removing duplicate fonts, resampling images, etc), please see Optimizer sample:
http://www.pdftron.com/pdfnet/samplecode.html#Optimizer