0

I want to run a jar file in editplus3 but I dont´n know how do it. My program take text structured and converte it to XML structure but it works fine. I take a program in a jar and this jar I want run on editplus. I could do it?

cuixiping
  • 24,167
  • 8
  • 82
  • 93
petercartagena
  • 350
  • 1
  • 4
  • 12

2 Answers2

0

Rather use a Java targeted editor/IDE, like Eclipse or Netbeans. Editplus, while great (I use it too) is simply not designed/suited for this particular task. Use the right tool for the job.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
0

I think you can just set up an external command (or a "user-defined tool" as EditPlus calls it) which runs:

java -jar <your-jar-file> <arguments>
pdbartlett
  • 1,521
  • 10
  • 18