ファイルの保存
ファイルを保存する異なる方法
Aspose.CellsはMicrosoft Excelファイルを表すWorkbookを提供し、Excelファイルと操作するために必要なメソッドを提供します。WorkbookクラスはExcelファイルを保存するために使用されるSaveメソッドを提供します。Saveメソッドには、ファイルをさまざまな方法で保存するための多くのオーバーロードがあります。ファイルの保存形式はSaveFormat列挙型によって決定されます。
ファイルを任意の場所に保存する
ファイルを保存するには、WorkbookオブジェクトのSaveメソッドを呼び出す際に、ファイル名(ストレージパスを含む)とSaveFormat列挙型から望ましいファイル形式を指定します。
Aspose::Cells::Startup(); | |
//For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-C | |
//Source directory path | |
U16String dirPath(u"..\\Data\\LoadingSavingAndConverting\\"); | |
//Output directory path | |
U16String outPath(u"..\\Data\\Output\\"); | |
//Load sample Excel file | |
Workbook workbook(dirPath + u"sampleExcelFile.xlsx"); | |
//Save in Excel 97-2003 format | |
workbook.Save(outPath + u"outputSavingFiletoSomeLocationExcel97-2003.xls"); | |
//OR | |
workbook.Save(outPath + u"outputSavingFiletoSomeLocationOrExcel97-2003.xls", SaveFormat::Excel97To2003); | |
//Save in Excel2007 xlsx format | |
workbook.Save(outPath + u"outputSavingFiletoSomeLocationXlsx.xlsx", SaveFormat::Xlsx); | |
Aspose::Cells::Cleanup(); |
ストリームにファイルを保存する
ファイルをストリームに保存するには、MemoryStreamまたはFileStreamオブジェクトを作成し、WorkbookオブジェクトのSaveメソッドを呼び出してそのストリームオブジェクトにファイルを保存します。Saveメソッドを呼び出す際に、SaveFormat列挙型を使用して望ましいファイル形式を指定します。
Aspose::Cells::Startup(); | |
//Source directory path | |
U16String dirPath(u""); | |
//Output directory path | |
U16String outPath(u""); | |
//Load sample Excel file | |
Workbook workbook(dirPath + u"wdd.xlsx"); | |
//Create FileStream object | |
std::ofstream fileStream(outPath.ToUtf8() + "wdd2.xlsx", std::ios::binary); | |
//Save the Workbook to Stream | |
Vector<uint8_t> stream = workbook.Save(SaveFormat::Xlsx); | |
fileStream.write(reinterpret_cast<char*>(stream.GetData()), stream.GetLength()); | |
fileStream.close(); | |
Aspose::Cells::Cleanup(); |
PDFにファイルを保存する
希望するコンテンツを PDF ファイルとして保存するために Aspose.Cells for C++ ライブラリを使用する方法について説明されています。Workbook オブジェクトを作成するか、既存の Excel ファイルを読み込んで Workbook オブジェクトを構築し、Save メソッドを呼び出してファイルを PDF に保存します。Save メソッドを呼び出す際には、SaveFormat 列挙型を使用して希望するファイル形式を指定します。
Aspose::Cells::Startup(); | |
//load/creat the Excel file | |
Workbook wb; | |
//Set cell value | |
wb.GetWorksheets().Get(0).GetCells().Get(u"A1").PutValue(u"test"); | |
//Set security options using PdfSecurityOptions class | |
PdfSecurityOptions securityOptions; | |
securityOptions.SetOwnerPassword(u"123"); | |
securityOptions.SetPrintPermission(true); | |
securityOptions.SetAccessibilityExtractContent(true); | |
//Set saving PDF parameters | |
PdfSaveOptions pdfSaveOptions; | |
pdfSaveOptions.SetSecurityOptions(securityOptions); | |
//Save encrypted PDF files | |
wb.Save("security.pdf", pdfSaveOptions); | |
Aspose::Cells::Cleanup(); |