문제

ColorOracle is a free color blindness simulator for Window, Mac and Linux. It help to check an UI Color Design for the Color Vision Impaired people.

Its executable file is a .jar. How to install an run colorOracle ?

enter image description here

도움이 되었습니까?

해결책 2

On linux, via terminal :

cd ./path/to/myfolder
mkdir colorOracle
curl -o ./colorOracle/ColorOracleJar.zip -C - http://colororacle.org/ColorOracleJar.zip
unzip -n ./colororacle/ColorOracleJar.zip -d ./colorOracle
chmod a+x ./colorOracle/ColorOracle.jar
./colorOracle/ColorOracle.jar

For other OS, see http://colororacle.org

다른 팁

An alternative solution for the run part is to use Java -jaroption :

java -jar ./colorOracle/ColorOracle.jar

Excerpt from the man java page:

-jar

    Execute a program encapsulated in a JAR file. The first argument is the 
    name of a JAR file instead of a startup class name. 
    […./colorOracle/ColorOracle.jar].
    See the Jar tool reference page 
    and the Jar trail of the Java Tutorial @
    http://java.sun.com/docs/books/tutorial/jar for information about 
    working with Jar files and Jar-file manifests.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top