Java string Encryption

Source: Internet
Author: User

the ancient Roman Emperor Caesar used the following methods to encrypt military information during the war:                Write a program that uses the above algorithm to encrypt or decrypt the user-entered English string.
 Packagestring encryption;ImportJavax.swing.JOptionPane; Public classPassword { Public Static voidMain (String args[]) {string password; Password= Joptionpane.showinputdialog ("Please enter a string to encrypt or to crack:");        String output; Output= "string:" +password; Char[] C =New Char[Password.length ()]; Password.getchars (0, Password.length (), c,0); //Encrypt         for(intI=0;i<password.length (); i++)          {            if(c[i]== ' x ') C[i]= ' A '; Else if(c[i]== ' y ') C[i]= ' B '; Else if(c[i]== ' z ') C[i]= ' C '; Else if(C[i] = = ") C[i]=C[i]; ElseC[i]+=3; } Output=NewString (c); //decryption        Char[] D =New Char[Password.length ()]; Password.getchars (0, Password.length (), d,0);  for(intI=0;i<password.length (); i++)        {            if(d[i]== ' C ') D[i]= ' Z '; Else if(d[i]== ' B ') D[i]= ' Y '; Else if(d[i]== ' a ') D[i]= ' x '; Else if(D[i] = = ") D[i]=D[i]; ElseD[i]-=3; } String o=NewString (d); Output+ = "The decrypted string is:" +o;//Defining output formatsJoptionpane.showmessagedialog (NULL, "The encrypted string is:" +output, "string" +password, joptionpane.plain_message); System.exit (0); }}

Results:

Java string Encryption

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.