• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back

How to run a jar file from cmd prompt

- cd to the directory




- java -jar "jar name here.jar"

How to get to a deeper directory in cmd prompt

- cd "Directory name"




- you can cd one folder at a time or many folders by:


- cd "directory1/directory2/etc.."

How to get back to the root directory

cd\

How to look inside of an executable jar file

change the extension from .jar to .zip

How to view the contents of a jar file from command prompt

jar tf "jar file name.jar"

How to add a path variable (ex. JAVA_HOME)

- click on start menu


- click on computer


- click on System Properties


- click on environmental variables


- under user variables, you can add a path by clicking new. Set the name to what ever is needed (ex. JAVA_HOME, JETTY_HOME, PATH)


- Then set the path as the absolute path to the bin directory of whatever you're installing so it should look like this:


C:aBunchOfFolders/bin

How to change the root directory

This will get you to the D root directory


D:




This will get you to the C root directory


C:




and so on