Question: Please explain in details how you did every single thing Create a week09 package You need to compile the HelloWorld.java to a HelloWorld.class file You

Please explain in details how you did every single thing

Create a week09 package

You need to compile the HelloWorld.java to a HelloWorld.class file

You need to include the HelloWorld.class file in the installer (you can't run a java file)

Download the NullSoff installer tool nsis-2.46-setup.exe

Create a new installer that runs from the command line (no gui required)

The command line installer must take a folder location to install to.

Turn In:

Your installer script named week09-installer.nsi

The compiled installer week09-installer.exe

/**********************/

package week09;

/**

* This class demonstrates a simple class with a public method

* Note: There is no main method.

* The TestHarness executes this class and verifies the implementation

*

* This example shows how to declare a class in Java,

* how to declare a method in java (display).

* Method declarations have four parts: visibility modifier, return type, name, optional parameters

* @author Scott LaChance

*

*/

public class HelloWorld

{

/**

* Returns the Hello World text

* Format: "Hello World from "

* Example:

* Hello World from Scott LaChance

* @return Hello World text

*/

public String display()

{

return "Hello World from Dina";

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!