To setup this acp(auto completion) file, first do the following:

   1. Copy the ACP files into yout EditPlus directory
   2. Click Tools menu
   3. Select Preferences
   4. In Files category select Settings
   5. For Default File type define Auto-completion to default.acp
   6. Add Java File type and define Auto-completion to java.2.acp
   7. Restart EditPlus to activate these settings



To make the compilation and application execution easy, do the following steps:

   1) Click Tools menu
   2) Select Configure user tools
   3) Click Add Tools>>
   4) Select Program
   5) Enter the following fields:
        Menu text: Compile JavaFile
        Command: c:\jdk141\bin\javac.exe -d .
        Argument: $(FileName)
        Initial directory: $(FileDir)
        Check Capture output
   6) Click Add Tools>>
   7) Select Program
   8) Enter the following fields:
        Menu text: Run Javafile
        Command: c:\jdk141\bin\java.exe
        Argument: $(FileNameNoExt)
        Initial directory: $(FileDir)
        Check Capture output
   9) Click Add Tools>>
  10) Select Program
  11) Enter the following fields:
        Menu text: appletviewer
        Command: c:\jdk141\bin\appletviewer.exe
        Argument: $(FileName)
        Initial directory: $(FileDir)
        Check Capture output
  12) Click OK
  13) Edit your Java code ans save it
  14) Press Ctrl-1 to compile your code (or select from Tools menu)
  15) Press Ctrl-2 to run your compiled application code (or select from Tools menu)
  16) Press Ctrl-3 to appletviewer on your html file (or select from Tools menu)

Good luck
JavaClue    http://www.javaclue.org/pub/tool/editor/editplus/editPlusForJava.html


