Phani Sai Ram
Phani Sai Ram

Reputation: 47

java.lang.NoSuchMethodError: org.apache.commons.compress.utils.IOUtils.readFully(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/ByteBuffer;)

I was using apache commons-compress-1.15.jar and working on mirth connect tool and though the method was found in the java file IOUtils.java still giving out this error in mirth tool readFully(ReadableByteChannel, ByteBuffer) not found. Please help me with this error.

Thank you.

Upvotes: 0

Views: 2399

Answers (2)

KevalP
KevalP

Reputation: 11

Mirth already using commons compress jar. You can find the commons compress version which is being used by mirth on below path.

  • {Mirth Installed Location}/server-lib/commons/commons-compress-{version}.jar
  • {Mirth Installed Location}/client-lib/commons-compress-{version}.jar

Upvotes: 1

Kohei TAMURA
Kohei TAMURA

Reputation: 5132

Probably, you are not using commons-compress-1.15.jar but using older version because the method has been introduced since 1.15.

Upvotes: 0

Related Questions