Exportieren Sie LISTOBJECT in CSV von Excel

Go-Bibliothek zum Exportieren von LISTOBJECT in eine CSV-Datei

Verwenden Sie Export API von Cells Cloud, um interne Objektworkflows der Datei Excel in Go zu exportieren. Dies ist eine professionelle Lösung zum Exportieren von LISTOBJECT in eine Datei im CSV-Format aus einer Tabellenkalkulation online mit Go.

Exportieren Sie das LISTOBJECT-Objekt mit Cells Cloud SDK for Go in eine Datei im CSV-Format

API
POST
https://api.aspose.cloud/v3.0/cells/export

Das Exportieren eines LISTOBJECT-Objekts aus der Datei Excel in eine CSV-Datei ist eine komplexe Aufgabe. Der Export von Übergängen von LISTOBJECT in das CSV-Format wird von unserem Go SDK durchgeführt, während der strukturelle und logische Hauptinhalt der Quell-LISTOBJECT-Tabelle erhalten bleibt. Unsere Go-Bibliothek ist eine professionelle Lösung zum Online-Export von LISTOBJECT-Objekten in Dateien im CSV-Format. Dieses Cloud SDK bietet Go-Entwicklern leistungsstarke Funktionalität und eine perfekte CSV-Ausgabe.

Codebeispiel in Go mit REST API zum Exportieren von LISTOBJECT in das CSV-Format aus einer Tabellenkalkulation

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-go/
    package main
    import (
	    "encoding/base64"
	    "os"
	    asposecellscloud "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v22"
    )
    func main() {
	    instance := asposecellscloud.NewLightCellsApiService(os.Getenv("ProductClientId"), os.Getenv("ProductClientSecret"))
	    var files map[string]string
	    files = make(map[string]string)
	    files["Book1.xlsx"] = "C:/Book1.xlsx"
	    files["myDocument.xlsx"] = "C:/myDocument.xlsx"
	    postExportOpts := new(asposecellscloud.PostExportOpts)
	    postExportOpts.ObjectType = "listobject"
	    postExportOpts.Format = "csv"
	    filesresult, _, err := instance.PostExport(files, postExportOpts)
	    if err != nil {
		    return
	    }
	    print(filesresult.Files[0].Filename)
	    originalStringBytes, err1 := base64.StdEncoding.DecodeString(filesresult.Files[0].FileContent)
	    if err1 != nil {
		    return
	    }
	    f, err2 := os.Create(filesresult.Files[0].Filename)
	    if err2 != nil {
		    return
	    }
	    _, err3 := f.Write(originalStringBytes)
	    if err3 != nil {
		    return
	    }
	    f.Close()
    }

So verwenden Sie Cells Cloud SDK für Go, um Objekte aus Excel LISTOBJECT in CSV zu exportieren

  1. Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
  2. Initialisieren Sie Cells API mit Ihrer Client-ID, Ihrem Client-Geheimnis, Ihrer Basis-URL und Ihrer Version API.
  3. Verwenden Sie die Methode `postExport`, um den resultierenden Stream abzurufen.

System Anforderungen

  1. Go-Version go1.13.0 oder neuer