How to execute a .class file by RightClick

NormR1 0 Tallied Votes 564 Views Share

For those that want to directly execute a .class file in a command prompt window. Here is a way:
Create the following batch file.
Use the Windows Explorer Tools to add a commandline for the .class file:
C:\BatchFiles\ExecClass.bat "%1"

Give it a name like: Execute class file

The batch file ExecuteClass.bat:

REM Execute a java class file - need to strip extension
echo filename is %~n1
java %~n1
MORE

REM Execute a java class file - need to strip extension
echo filename is %~n1
java %~n1
MORE
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.