sphinx4 icon indicating copy to clipboard operation
sphinx4 copied to clipboard

sphinx-data doesn't work in modular Java apps

Open Thorn1089 opened this issue 5 years ago • 3 comments

Because of changes made to how Class.getResource(String) works in Java 9 and above, simply including the sphinx-data JAR does not work to load the English acoustic model, dictionary, etc.

The problem is here:

public static URL resourceToURL(String location) throws MalformedURLException {
    Matcher jarMatcher = jarPattern.matcher(location);
    if (jarMatcher.matches()) {
      String resourceName = jarMatcher.group(1);
      return ConfigurationManagerUtils.class.getResource(resourceName);
    } else {
      if (location.indexOf(58) == -1) {
        location = "file:" + location;
      }

      return new URL(location);
    }
  }

Using a location such as resource:/edu/cmu/sphinx/models/en-us/en-us will no longer work. This is because Class.getResource will delegate to the classloader and pass the module name (in this case derived from the JAR file as "sphinx.core"). The problem is that the resources are in a different JAR, which gets the automatic module name "sphinx.data". Since the classloader will only look within the "sphinx.core" module, it won't find the resources from "sphinx.data."

Thorn1089 avatar Nov 27 '18 16:11 Thorn1089

@TomRK1089 Hello. Have you solved the problem? And how to solve it?

FriedaSmith avatar Jul 24 '20 02:07 FriedaSmith

I had to copy the data files out of the JAR, repackage them in my own JAR, and extract them to the filesystem at startup. There was no simple workaround.

Thorn1089 avatar Jul 28 '20 15:07 Thorn1089

Thank you very much.

FriedaSmith avatar Jul 29 '20 01:07 FriedaSmith