Puoi convertire CGM in XAMLFLOW utilizzando due semplici passaggi. Per prima cosa devi eseguire il rendering del file CGM in DOC utilizzando Aspose.PDF for Java . Successivamente, utilizzando la potente API di elaborazione dei documenti Aspose.Words for Java , puoi convertire DOC in XAMLFLOW. Entrambe le API rientrano nel pacchetto Aspose.Total for Java .
API Java per convertire CGM in XAMLFLOW
Requisiti di conversione
Puoi facilmente utilizzare Aspose.Total per Java direttamente da un progetto basato su Maven e includono Aspose.PDF per Java e Aspose.Words per Java nel tuo pom.xml.
In alternativa, puoi ottenere un file ZIP da downloads .
// load CGM file with an instance of Document class
Document document = new Document("template.cgm");
// save CGM as a DOC
document.save("DocOutput.doc", SaveFormat.DOC);
// load DOC with an instance of Document
Document outputDocument = new com.aspose.words.Document("DocOutput.doc");
// call save method while passing SaveFormat.XAML_FLOW
outputDocument.save("output.xaml_flow", SaveFormat.XAML_FLOW);
Requisiti di conversione
Durante la conversione da CGM a XAMLFLOW, anche se il documento è protetto da password, è comunque possibile aprirlo utilizzando l’API di manipolazione PDF Aspose.PDF per Java . Per aprire il file crittografato, è necessario creare un oggetto Document e aprire il CGM utilizzando la password del proprietario.
// open encrypted document
Document document = new Document("input.cgm", "password");
// save CGM as a DOC
document.save("DocOutput.doc", SaveFormat.DOC);
Aprire il documento CGM protetto da password tramite Java
Durante il salvataggio del documento di input in formato file XAMLFLOW, puoi anche salvare il documento in un database anziché in un file system. Potrebbe essere necessario implementare l’archiviazione e il recupero di oggetti Document da e verso un database. Ciò sarebbe necessario se stessi implementando qualsiasi tipo di sistema di gestione dei contenuti. Per salvare il XAMLFLOW nel database è spesso necessario serializzare il documento per ottenere un array di byte. Questo può essere fatto utilizzando l’API Aspose.Words for Java . Dopo aver ottenuto il tuo array di byte, puoi memorizzarlo nel database usando l’istruzione SQL.
public static void StoreToDatabase(Document doc, Connection mConnection) throws Exception {
// create an output stream which uses byte array to save data
ByteArrayOutputStream aout = new ByteArrayOutputStream();
// save the document to byte array
doc.save(aout, SaveFormat.XAML_FLOW);
// get the byte array from output steam
// the byte array now contains the document
byte[] buffer = aout.toByteArray();
// get the filename from the document.
String fileName = doc.getOriginalFileName();
String filePath = fileName.replace("\\", "\\\\");
// create the SQL command.
String commandString = "INSERT INTO Documents (FileName, FileContent) VALUES('" + filePath + "', '" + buffer + "')";
Statement statement = mConnection.createStatement();
statement.executeUpdate(commandString);
}