私はこのコードで単純なHTMLファイルを検証しようとしています:
public static void main(String[] args)
{
String xhtml = "<html><body><p>Hello, world!</p></body></html>";
ValidationResponse response = new ValidatorBuilder().html().validate(xhtml);
System.out.println(response.valid());
}
そして結果:
スレッド「main」の例外java.lang.NoClassDefFoundError:com / rexsl / test / AssertionPolicy at com.rexsl.w3c.ValidatorBuilder。(ValidatorBuilder.java:64)at HTMLValidator.main(HTMLValidator.java:10)
これを修正する方法は?