C++ 응용 프로그램 내에서 XLSX 파일을 업데이트하려는 프로그래머의 경우, Aspose.Total for C++ API는 업데이트 프로세스를 자동화하는 데 도움이 될 수 있습니다. Microsoft Excel 문서를 포함하여 다양한 형식을 다루는 다양한 C++ 라이브러리의 전체 패키지입니다. Aspose.Total for C++ 패키지의 일부인 Aspose.Cells for C++ API를 사용하면 이러한 수정 프로세스를 쉽게 수행할 수 있습니다. XLSX 문서를 업데이트하는 프로세스는 먼저 시트에 액세스한 다음 C++를 사용하여 Excel에서 셀 값을 업데이트하면 간단합니다.
C++에서 XLSX 파일을 업데이트하는 방법
- CreateIWorkbook 을 사용하여 XLSX 파일 로드
- GetIWorksheets()->GetObjectByIndex(0)를 이용한 해당 Worksheet 및 GetICells()->GetObjectByIndex를 이용한 해당 셀 접근
- PutValue 방식을 사용하여 접근한 셀에 새로운 데이터 삽입
- 경로를 매개변수로 하는 파일을 전달하여 Save 메서드를 사용하여 파일을 .xlsx 파일로 저장합니다.
수정 요구 사항
코드 - C++에서 XLSX 파일 업데이트
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
StringPtr dirPath = new String("..\\Data\\sourcePath\\"); | |
StringPtr outPath = new String("..\\Data\\OutputPath\\"); | |
StringPtr srcCSV = dirPath->StringAppend(new String(L"srcFile.csv")); | |
StringPtr updatedCSV = outPath->StringAppend(new String(L"outReadWriteCSV.csv")); | |
intrusive_ptr<IWorkbook> wb = Factory::CreateIWorkbook(srcCSV); | |
intrusive_ptr<IWorksheet> ws = wb->GetIWorksheets()->GetObjectByIndex(0); | |
intrusive_ptr<ICell> cell = ws->GetICells()->GetObjectByIndex(new String("A1")); | |
StringPtr strVal = cell->GetStringValue(); | |
StringPtr cellValue = new String("Cell Value: "); | |
Console::WriteLine(cellValue->StringAppend(strVal)); | |
cell = ws->GetICells()->GetObjectByIndex(new String("C4")); | |
intrusive_ptr<String> strValPtr = new String(strVal); | |
cell->PutValue(strValPtr); | |
wb->Save(updatedCSV, SaveFormat_CSV); |