Hoe DOC naar MD te converteren met Java REST API

Deze tutorial helpt u te begrijpen hoe u DOC kunt omzetten naar MD met Java REST API** in de cloud. Om DOC naar MD-indeling te exporteren, gebruiken we Aspose.Words voor Java Cloud SDK. Als u geïnteresseerd bent in DOC naar MD-conversie in Java Low Code API, dan kunt u dit doen met behulp van de onderstaande code en stappen.

Voorwaarde

Stappen om DOC naar MD te converteren in Java REST API

  1. Stel de client-ID en het clientgeheim in voor de API
  2. Maak een exemplaar van de klasse WordsAPI met clientreferenties
  3. Specificeer invoer- en uitvoerbestanden
  4. Lees het invoerDOC-bestand en upload het naar de cloudopslag
  5. Maak een exemplaar van WordsAPI met invoer- en uitvoerbestandsindelingen
  6. Roep de methode convertDocument aan naar Convert DOC naar MD met behulp van REST API
  7. Sla het uitgevoerde MD-bestand op de lokale schijf op

Code voor DOC naar MD-conversie in Java Low Code API

String ClientID = Client.getID(); //replace Client.getID() with your own client ID here
String ClientSecret = Client.getSecret(); //replace3 Client.getSecret() with your own client secret here
String APIBaseUrl="https://api.aspose.cloud";
String Local_Path = "C:/Temp/";
try {
//Create API client with credentials
ApiClient apiClient = new ApiClient(ClientID, ClientSecret, APIBaseUrl);
//Create SDK object
WordsApi wordsApi = new WordsApi(apiClient);
String inputFile = "DOCToMD.doc";
String outputFile = "DOCToMD.md";
String outputFormat = "md";
//Read input file to bytes array
byte[] inputFileData = Files.readAllBytes(Paths.get(Local_Path + inputFile).toAbsolutePath());
//create conversion request object with input and output files
ConvertDocumentRequest convertDocumentRequest = new ConvertDocumentRequest(inputFileData, outputFormat, null, null, null, null, null, null, null);
//convert the input file to output format
byte[] outputFileData = wordsApi.convertDocument(convertDocumentRequest);
//save the output file from the bytes array
FileOutputStream fileOutputStream = new FileOutputStream(Local_Path + outputFile);
fileOutputStream.write(outputFileData);
} catch (Exception e) {
System.out.println(e.getMessage());
}

Met het hierboven gespecificeerde voorbeeldcodefragment kunt u DOC naar MD converteren met Java REST API. U hoeft alleen maar het DOC-bestand in te voeren met behulp van de Aspose.Words REST API SDK voor Java en het MD-uitvoerbestand te downloaden om het lokaal op te slaan met behulp van de Aspose-conversie-API online.

Deze DOC naar MD-conversie kan worden gebruikt met alle no-code- of low-code-apps op Windows, Linux of Mac.

U kunt ook een andere soortgelijke functie bekijken op de volgende pagina: Hoe DOCX naar MD te converteren met Java REST API

 Nederlands