문서를 Excel로 변환

다른 형식으로 문서를 변환하는 것은 주력 기능입니다. Aspose.Words· 문서 변환을 할 수 있습니다. 짐 체재 XLSX 형식도 있습니다.

문서를 XLSX로 변환

XLSX에 문서를 변환하는 것은 오히려 복잡한 과정입니다. 문서를 XLSX 형식으로 저장 <span notrans="<span notrans=" Aspose.Words"="">· 이용안내 XlsxSaveOptions 클래스와 새로운 Xlsx 이름 * SaveFormat 관련 기사 위에서 언급했듯이, 지원되는 모든 부하 형식으로 문서를 저장할 수 있습니다. Aspose.Words XLSX에.

다음 코드 예제는 PDF를 XLSX로 저장하는 방법을 보여줍니다:

Document doc = new Document(getMyDir() + "Pdf Document.pdf");
doc.save(getArtifactsDir() + "BaseConversions.PdfToXlsx.xlsx");

XLSX에 저장할 때 찾기 및 교체

자주 묻는 질문 Aspose.Words, 문서의 특정 문자열 또는 정규 표현식을 찾을 수 있으며, 해당 항목에 해당합니다. 그런 다음 XLSX 형식으로 결과를 저장할 수 있습니다.

다음과 같은 코드 예제는 찾기 및 교체 작업을 수행하고 XLSX에 결과를 저장하는 방법을 보여줍니다:

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.writeln("Ruby bought a ruby necklace.");

// We can use a "FindReplaceOptions" object to modify the find-and-replace process.
FindReplaceOptions options = new FindReplaceOptions();
// Set the "MatchCase" flag to "true" to apply case sensitivity while finding strings to replace.
// Set the "MatchCase" flag to "false" to ignore character case while searching for text to replace.
options.setMatchCase(true);

doc.getRange().replace("Ruby", "Jade", options);
doc.save(getArtifactsDir() + "BaseConversions.FindReplaceXlsx.xlsx");

XLSX로 저장할 때 압축 레벨 지정

압축 레벨을 지정할 수도 있습니다. CompressionLevel 호텔 위치

다음 코드 예제는 XLSX 형식으로 저장할 때 압축 수준을 지정하는 방법을 보여줍니다

Document doc = new Document(getMyDir() + "Document.docx");
XlsxSaveOptions saveOptions = new XlsxSaveOptions();
saveOptions.setCompressionLevel(CompressionLevel.MAXIMUM);

doc.save(getArtifactsDir() + "BaseConversions.CompressXlsx.xlsx", saveOptions);

더 보기