使用 docx4j 进行 docx 比较时出现 OutOfMemoryError
在我的应用程序中,我正在比较两个 docx 文件并创建一个 html 比较文件,当我尝试使用低于 150 或 170 行的文件时,就没有问题,而我尝试比较 200 行或更多的大文件时间显示
java.lang.OutOfMemoryError: Java heap space error,
有人可以帮忙吗?
in my application i am comparing two docx files and creating one html comparison file, when i tried with below 150 or 170 lines of file then there is no issue, while i try to compare the big files like 200 lines or more than that then that time it showing the
java.lang.OutOfMemoryError: Java heap space error,
can any one please help on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的内存不足,因为您没有使用 Docx4jDriver 类,这通过首先执行段落级别比较使比较问题更容易处理。
像这样使用它:
You are running out of memory because you aren't using the Docx4jDriver class, which makes the diff problem more tractable by doing a paragraph level diff first.
Use it like so:
您可以使用 -Xmx 和 -Xmx 作为 VM 参数来增大堆空间
这里有关 堆大小调整或此处堆大小
you can make the heap space bigger with -Xmx and -Xmx as VM Arguments
Here more about Heap Size Tuning or here Heap size
尝试使用命令行参数
-Xmx<最大堆大小>
和-Xms<最小堆大小>
增加 Java 堆大小。另外,在您的代码中,使用以下命令测试您是否确实增加了堆大小:
在第 117 行调用
Differencer.diff
之前执行此操作。Try increasing the Java heap size using the command line arguments
-Xmx<maximum heap size>
and-Xms<minimum heap size>
.Also in your code, test that you actually have increased the heap size with the following:
Do this before calling
Differencer.diff
on line 117.尝试分析您的应用程序,而不是做出假设或明智的猜测。您可以使用 Jdk 附带的 VisualVM 或控制台。
另外,您可以使用 jmap 对应用程序进行堆转储,然后使用 jhat 或 eclipse mat(我更喜欢这个,通过 google 搜索)来查看消耗内存的内容并查找任何异常行为。
Try profiling your application rather than making assumptions or intelligent guess. You can use visualvm or console that ships with the Jdk.
Also, you can take a heap dump of your application using jmap and then use either jhat or eclipse mat (I prefer this, google it out) to see what's consuming the memory and look out for any unusual behavior.