Recent content by Abraham Stones

  1. A

    Java Problem in creating JAR file - "no main manifest attribute"

    No main manifest error occurs because you did not define any starting point(i.e main method) for the application BuildGUI while creating the executable jar. The MANIFEST.MF file that was generated by default did not contain Main-Class property in this case. You just need to add the following...
Back
Top