第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 Golang 中附加 docx 文件

如何在 Golang 中附加 docx 文件

Go
函數(shù)式編程 2022-09-05 09:13:53
我想復(fù)制docx文件的所有內(nèi)容(包括其格式,如粗體,下劃線,項目符號,段落等)并將其附加到另一個docx文件。在這種情況下,我想從Source / D1.docx復(fù)制內(nèi)容并將其附加到temp.docxpackage mainimport (    "io/ioutil"    "log"    "os")func main() {    data, err := ioutil.ReadFile("./Source/D1.docx")    if err != nil {        log.Println(err)    }    file, err := os.OpenFile("temp.docx", os.O_APPEND|os.O_WRONLY, 0644)    if err != nil {        log.Println(err)    }    file.Write(data)}
查看完整描述

1 回答

?
30秒到達戰(zhàn)場

TA貢獻1828條經(jīng)驗 獲得超6個贊

請執(zhí)行下列操作:


git clone --depth 1 git://github.com/unidoc/unioffice

New-Item -ItemType Directory unioffice/document/merge

Set-Location unioffice/document/merge

git pull origin pull/448/head

然后在文件夾中,創(chuàng)建以下文件:merge


package main


import (

   "github.com/unidoc/unioffice/document"

   "os"

   "path/filepath"

)


func main() {

   s := "TestDocument.docx"

   doc0, e := document.Open(s)

   if e != nil {

      panic(e)

   }

   defer doc0.Close()

   doc1, e := document.Open(s)

   if e != nil {

      panic(e)

   }

   defer doc1.Close()

   doc0.AddParagraph().AddRun().AddPageBreak()

   if e := doc0.Append(doc1); e != nil {

      panic(e)

   }

   out := filepath.Join(os.TempDir(), "merged.docx")

   doc0.SaveToFile(out)

}

請注意,這僅用于測試,對于實際代碼,您將需要獲得許可證。


https://github.com/unidoc/unioffice


查看完整回答
反對 回復(fù) 2022-09-05
  • 1 回答
  • 0 關(guān)注
  • 79 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號