java - package org.apache.poi.hwpf does not exsist -


i trying compile code test out, , recieving errors

package :

org.apache.poi.hwpf.usermodel org.apache.poi.hwpf.extractor org.apache.poi.hwpf 

does not exsist

does know can find these packages ? complie simple piece of code should allow conversion of docx file pdf file

the word 2007 xml formats in xwpf hwpf older versions of word, example usermodel org.apache.poi.xwpf.usermodel

the jar under poi-ooxml , there copy on maven repo1 at: http://repo1.maven.org/maven2/org/apache/poi/poi-ooxml/3.9/

i'm using sbt these dependancies:

// add multiple dependencies librarydependencies ++= seq(   "org.apache.poi" % "poi" % "3.9" % "compile->default",   "org.apache.poi" % "poi-ooxml" % "3.9" % "compile->default",   "org.apache.poi" % "poi-ooxml-schemas" % "3.9" % "compile->default",   "org.mortbay.jetty" % "jetty" % "6.1.22" % "test->default",   "junit" % "junit" % "4.5" % "test->default",   "org.scalatest" %% "scalatest" % "1.6.1" % "test->default" ) 

Comments

Popular posts from this blog

node.js - Bad Request - node js ajax post -

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -