diff --git a/README.md b/README.md index 31885fa..6c536c7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Below is a step-by-step instruction to make a functional plugin without the tedi 2. Prepare dependency package(s) (here `ij.jar` is needed, which could be downloaded from [here](https://wsr.imagej.net/jars)) in the same folder as our source code. -3. [Install JDK](https://www.oracle.com/technetwork/java/javase/downloads/index.html). On Windows, [add](https://docs.oracle.com/javase/7/docs/webnotes/install/windows/jdk-installation-windows.html#path) the folder containing all executables to the `PATH` environment variable. +3. [Install JDK](https://www.oracle.com/technetwork/java/javase/downloads/index.html). On Windows, [add](https://docs.oracle.com/javase/7/docs/webnotes/install/windows/jdk-installation-windows.html#path) the folder containing all executables to the `PATH` environment variable; otherwise, you need to provide the full path of the executable (if the path contains special characters, you may find [this](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-7.1&viewFallbackFrom=powershell-6#call-operator-) helpful). 4. Go to Terminal and compile our source code into a java class file: `javac -classpath ij.jar SelectSquareROI.java` (Note: edit the filename accordingly). If you want to check the version of a java class file and determine its compatibility, you might find [this thread](https://stackoverflow.com/questions/27065/tool-to-read-and-display-java-class-versions) helpful.