Java programming project #6 | Computer Science homework help

 create a Java GUI stand-alone application that allows a user to encrypt any text as Pig Latin.  For example, the string “Java is very simple!” should be converted to the string “Avajay isway eryvay implesay!“.  You may use either AWT or swing. 

 Write a stand-alone Java GUI application called TxtCrypt.  Use either AWT or swing.  This application should allow anyone to convert any text into Pig Latin.  Your application must provide a pair of TextArea (or JTextArea) components where the user can type in any text into the first, and see the encrypted results in the second.  The input text is called the plaintext, and the resulting Pig Latin is called the ciphertext.  You must provide the basic GUI and event handling.  This must include a button, which when pressed displays the ciphertext for the currently displayed plaintext.  (You may add additional GUI components as you see fit.) 

 

I have provided class utils.PigLatin (view utils.PigLatin API), which is a class with a public static method called encrypt.  (See below for the download link.)  This method takes a String as an argument, and returns an encrypted, “Pig-Latin-ized” version of the argument as another String.  The method signature is:

   package utils;
   public class PigLatin
   {
       public static String encrypt ( String plainText )
       { ...
       }

       ...
   }

You only need the utils.jar file (right-click this link to save), which should be put into the same directory as your Java class file(s).  (If you place your application into its own Jar file, both Jars should be in the same directory.) 

To compile your application, don’t forget you will need util.PigLatin to be found on your CLASSPATH.  The simplest way to do that is to have your Java source file (say Proj6.java) and utils.jar in the same folder, say on your Desktop.  Then you can compile your program like this on Windows:

C:\Users\yourname\Desktop>javac -cp .;utils.jar Proj6.java

 The model solution application TxtCrypt.jar is available for you to download and play with.  

grammarlytutors
Calculate your essay price
(550 words)

Approximate price: $22

How it Works

1

It only takes a couple of minutes to fill in your details, select the type of paper you need (essay, term paper, etc.), give us all necessary information regarding your assignment.

2

Once we receive your request, one of our customer support representatives will contact you within 24 hours with more specific information about how much it'll cost for this particular project.

3

After receiving payment confirmation via PayPal or credit card – we begin working on your detailed outline, which is based on the requirements given by yourself upon ordering.

4

Once approved, your order is complete and will be emailed directly to the email address provided before payment was made!