我有戏! 2.4 webapp,使用epubcheck 4.0.1验证epub。

epubcheck.jar包含几种语言的本地化版本。

当我从命令行运行jar时,我得到了本地化的错误消息。

java -Duser.language=es -jar epubcheck.jar some.epub

Validación usando la versión de reglas epub 2.0.1.
INFO(CSS-007): some.epub/OEBPS/css/style.css(10,3): La propiedad 'font-face' OEBPS/fonts/ABeeZee-Regular.woff hace referencia a un tipo de fuente no estándar application/octet-stream.
INFO(CSS-007): some.epub/OEBPS/css/style.css(16,3): La propiedad 'font-face' OEBPS/fonts/ABeeZee-Italic.woff hace referencia a un tipo de fuente no estándar application/octet-stream.
No se han detectado errores o advertencias.
epubcheck completado


但是,当我将其作为库运行时,它始终默认为英语。

我试过了:

// set locale for translated messages
Locale locale = new Locale(language);
Locale.setDefault(locale);
language = Locale.getDefault().getLanguage(); // is "es" now


如何使epubcheck使用其他本地化版本?

编辑:

我得到像这样的epubcheck的输出:

// catch stderror output of epubvalidator
ByteArrayOutputStream ba = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(ba);
System.setOut(ps);
System.setErr(ps);
EpubCheck epubCheck = new EpubCheck(file);
// .. get stdout as string
String resultString = new String(ba.toByteArray(), "UTF-8");

最佳答案

编辑11/12/2015:我添加了代码以支持每个实例的本地化,并向EpubCheck存储库发出了拉取请求。您可以在此处查看代码:


Localization fork on github
Pull request


我将继续跟踪此事,并通过最新动态更新此帖子。

原始答案:

从4.0开始,Epubcheck支持i18n国际化。您可以在项目的GitHub wiki上查看国际化页面。当前支持enjadeesfrit

以下代码应满足您的要求:

File file = new File("/home/matthew/Desktop/RobinHood-1.0.epub");
Locale l = new Locale("es");
Locale.setDefault(l);

// Create a stream to hold the output
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream old = System.out;
System.setOut(new PrintStream(baos));

// Do epubcheck stuff...
EpubCheck epubCheck = new EpubCheck(file);
epubCheck.validate();

// Flush and reset output stream
System.out.flush();
System.setOut(old);

System.out.println("Result >> " + baos.toString());


默认输出现在以西班牙语显示:


  结果>>有效版本为2.0.1。


编辑:由于Locale.setDefault()更改JVM的全局语言环境,因此不适用于服务器端。

10-07 13:47