I downloaded the binaries of the latest stable version of apache-mime4j
(0.7.2).
Yet, I fail to compile the next code since MboxIterator
& CharBufferWrapper
classes are not found.
final File mbox = new File("path/name.mbox");
for (CharBufferWrapper message : MboxIterator.fromFile(mbox).charset(ENCODER.charset()).build())
{do something}
The jars included in my build path: apache-mime4j-core-0.7.2.jar
, apache-mime4j-dom-0.7.2.jar
.
Am I using the wrong jars or version?