将一个文档的内容复制到另一个文档

发布于 2024-08-30 05:43:23 字数 190 浏览 6 评论 0原文

我正在尝试复制一个文档的内容并通过命令提示符将其附加到另一个文档。通过命令(复制 fileA.txt + fileb.txt),它可以很好地处理简单的 .txt 文件。但是,当我尝试将 MSWord 文件的内容复制到另一个 MSWord 文件时,却没有发生。虽然目标文件大小不断增加,但没有任何内容。当在记事本中打开doc文件时,它显示不断添加不可读的数据。请帮忙。

I am trying to copy the contents of one document and append it to another document through command prompt. It works fine for simple .txt file through the command (copy fileA.txt + fileb.txt). But when I try to copy the contents of a MSWord file to another MSWord file, it does not happen. Though the target file size keeps increasing but without any content. When opened the doc file in notepad, it shows soe unreadable data keeps getting added. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半世蒼涼 2024-09-06 05:43:24

(这些是 unix 命令;如果您在 Windows 上运行,则可以使用相应的等效命令或 Cygwin)

对于文本文件:
猫文件1>> file2

对于二进制文件或特殊格式(即word):
- 编写一个程序从一个文件中提取文本并将其插入到另一个文件中,保留格式等,

或者

strings file2 >> file3
strings file1 >> file3

file3 现在拥有所有文本。

(These are unix commands; if you're running on Windows, you can use the appropriate equivalent or Cygwin)

For text files:
cat file1 >> file2

For binary files or special formats (i.e., word):
- write a program to pull the text from one and insert it into the other, preserving formatting, etc.

or

strings file2 >> file3
strings file1 >> file3

file3 now has all the text.

丢了幸福的猪 2024-09-06 05:43:24

您不能简单地连接 MS Word 文件。它们是二进制文件,只能使用 MS Word 或某些 API 进行串联。不是从命令行

You can't simply concatenate MS Word files. They are binary files and concatenation can be made only using MS Word or some APIs. Not from command line

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文