CustomImplementationFactory を使用してメモリ ストリームのカスタム実装を作成する

考えられる使用シナリオ

Aspose.Cells は API という名前のCellsHelper.CustomImplementationFactoryこれにより、ユーザーは、デフォルトの MemoryStream の代わりに Recyclable メモリ実装を使用するなど、カスタム実装を提供できます。

CustomImplementationFactory を使用してメモリ ストリームのカスタム実装を作成する

次のサンプル コードは、CellsHelper.CustomImplementationFactoryあなたのプログラムで。システムに十分なメモリがあっても、メモリが連続していない場合があります。メモリ ストリーム オブジェクトは連続したメモリを使用しますが、連続していないメモリを代わりに使用するような方法でメモリ ストリームの実装を提供できます。

サンプルコード

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
//Implement CustomImplementationFactory - CELLSNET-45461
public class MM : CustomImplementationFactory
{
RecyclableMemoryStreamManager manager = new RecyclableMemoryStreamManager();
public override MemoryStream CreateMemoryStream()
{
return manager.GetStream("MM");
}
public override MemoryStream CreateMemoryStream(int capacity)
{
return manager.GetStream("MM", capacity);
}
}
//----------------------------------------
//----------------------------------------
//Assign implementation instance of CustomImplementationFactory
CellsHelper.CustomImplementationFactory = new MM();
//Light cells data handler implementation
LightCellsDataHandlerVisitCells v = new LightCellsDataHandlerVisitCells();
//Create workbook object
Workbook wb = new Workbook(sourceDir, new LoadOptions() { MemorySetting = MemorySetting.MemoryPreference, LightCellsDataHandler = v });
//Print miscellaneous data
Console.WriteLine("Total sheets: " + wb.Worksheets.Count + ", cells: " + v.CellCount + ", strings: " + v.StringCount + ", formulas: " + v.FormulaCount);