使用Scala的Json4s和Java

时间:2017-07-12 16:38:46

标签: java scala jar json4s

我有一个包含以下Scala类的JAR:

class JsonAvroConverter(val sch : org.apache.avro.Schema) extends scala.AnyRef {
  def toJson(avroData : org.json4s.JValue) : org.json4s.JValue = { /* compiled code */ }
}

现在我需要能够从Java项目中调用类中的方法。我在Json4s中添加了POM并且我有Json4s accessbile但是我不确定从Java上下文中使用该库的方法。我也尝试过这样的事情:

String myString = "{\"name\":\"bob\"}"
JsonMethods json = new Jsonmethods();
json.parse(myString);

但我首先无法实例化JsonMethods

0 个答案:

没有答案