ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 示例 ``` file := "1.doc" args := []string{ "-jar", "tika-app-2.9.2.jar", "-T", file, } cmd := exec.CommandContext(context.Background(), "java", args...) output, err := cmd.CombinedOutput() if err != nil { fmt.Printf("errr:%s\n", err) } fmt.Printf("output %s\n", output) // 输出聊天内容 ```