2

我想问一下 xliff filters.jar 文件。XLIFF(XML 本地化交换文件格式)是一种基于 XML 的格式,用于标准化本地化过程中工具之间传递可本地化数据的方式。

我的项目是关于本地化的。

将句子从源语言翻译成目标语言。我想使用过滤器。jar 以便我可以输入任何文件格式并完成翻译,然后我得到原样的输出。

所以我想知道如何在我现有的项目中使用该 filters.jar 文件。如何在eclipse项目中导入这个jar文件?感谢你

4

1 回答 1

0

if you work eclipse read this page

Without Eclipse :

javac -classpath external.jar myClass.java EDIT:

If your main class is in a package

package com.mycompany;
public class myClass
{
...
...
then

you'll need

javac -classpath external.jar com/mycompany/myClass.java 

and

to run

java -classpath external.jar com.mycompany.myClass
于 2013-07-22T07:23:12.133 回答