xliff - Filter.jar in java project -
i want ask xliff filters.jar file. xliff (xml localisation interchange file format) xml-based format created standardize way localizable data passed between tools during localization process.
my project localization.
translating sentences source destination language.i want use filters. jar can take input in file format , translation done , output is.
so want know how use filters.jar file in existing project. how import jar file in eclipse project ? thank u
if work eclipse read page
without eclipse :
javac -classpath external.jar myclass.java edit:
if main class in package
package com.mycompany; public class myclass { ... ...
you'll need
javac -classpath external.jar com/mycompany/myclass.java
and
to run
java -classpath external.jar com.mycompany.myclass
Comments
Post a Comment