尝试使用Memory Analyzer打开HPROF文件(由Debug.dumpHprofData创建)时,出现以下异常:

java.io.IOException: Unknown HPROF Version (JAVA PROFILE 1.0.3)
at org.eclipse.mat.hprof.AbstractParser.readVersion(AbstractParser.java:124)
at org.eclipse.mat.hprof.Pass1Parser.read(Pass1Parser.java:69)
at org.eclipse.mat.hprof.HprofIndexBuilder.fill(HprofIndexBuilder.java:65)
at org.eclipse.mat.parser.internal.SnapshotFactoryImpl.parse(SnapshotFactoryImpl.java:203)
at org.eclipse.mat.parser.internal.SnapshotFactoryImpl.openSnapshot(SnapshotFactoryImpl.java:114)
at org.eclipse.mat.snapshot.SnapshotFactory.openSnapshot(SnapshotFactory.java:143)
at org.eclipse.mat.snapshot.SnapshotFactory.openSnapshot(SnapshotFactory.java:123)
at org.eclipse.mat.ui.snapshot.ParseHeapDumpJob.run(ParseHeapDumpJob.java:56)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)

我该如何解决?

最佳答案

您从Android获取的hprof文件具有android特定格式。您应该将Android OS中的hprof文件格式转换为标准hprof格式。为此,您可以使用位于hprof-convAndroidSDK/tools/hprof-conv工具。

例如:

hprof-conv android.hprof mat.hprof

然后在内存分析器中打开mat.hprof。

编辑:hprof-conv在某些 bundle 软件中可能位于AndroidSDK/platform-tools/下。

10-08 17:06