Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please explain in details how you did every single thing Your team lead, Dany fish, has gotten a lot of feedback on how hard it

Please explain in details how you did every single thing

Your team lead, Dany fish, has gotten a lot of feedback on how hard it is to install the product. She comes to you and assigns you the task of creating an installer for the HelloWorld app.

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 Dina

*

*/

public class HelloWorld

{

/**

* Returns the Hello World text

* Format: "Hello World from "

* Example:

* Hello World from Dina

* @return Hello World text

*/

public String display()

{

return "Hello World from Dina";

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Publishing With Filemaker Pro On The Web

Authors: Maria Langer

1st Edition

0201696657, 978-0201696653

More Books

Students also viewed these Databases questions