On Thu, Sep 20, 2012 at 10:17 AM, Pedro Debevere <[email protected]> wrote: > Caused by: java.lang.IllegalArgumentException: Illegal pattern character 'X' > at java.text.SimpleDateFormat.compile(SimpleDateFormat.java:769) > at java.text.SimpleDateFormat.initialize(SimpleDateFormat.java:576) > at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:501) > at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:476) > at > org.dbpedia.extraction.util.StringUtils$$anon$1.initialValue(StringUtils.scala:16)
I think you might have to use Java 7 in order to allow 'X' in date format strings. Compare: http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html For that, you'll need to change <java.compiler.version> in the main pom to 1.7 and have Java 7 on your machine. > Can anyone provide me some more details about the TODO mentioned in [5]? It seems that in the Dutch Wikipedia, the URLs of disambiguation pages are suffixed with multiple different strings (and sometimes none as you mentioned). All these strings have to be known for the process of extracting disambiguation links, but currently the configuration only allows for one. This should be extended to a set of strings. Cheers, Max ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://ad.doubleclick.net/clk;258768047;13503038;j? http://info.appdynamics.com/FreeJavaPerformanceDownload.html _______________________________________________ Dbpedia-discussion mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dbpedia-discussion
