I've been trying to get this to work. It complies but my char array won't display anything.

'cipher2.in' contains this:
3 L E ABCDEFGHIJKLMNOPQRSTUVWXYZ

Output:
Cipher Code:
Cipher Text: ABCDEFGHIJKLMNOPQRSTUVWXYZ
Cipher Key: 3

import java.util.*;
import java.io.*;

public class Test2
{
	public static void main (String[] args) throws IOException
	{
		Scanner input = new Scanner(new FileReader("cipher2.in"));
		String cipherText;
		String cipherDirection;
	        String cipherType;
		int cipherKey;
	
		cipherKey = input.nextInt();
		cipherDirection = input.next();
		cipherType = input.next();
		cipherText = input.next();

		encrypt(cipherText, cipherKey);
	}

	public static void encrypt(String cipherText, int cipherKey)
	{	
		int letterPosition;
		int  arrayPosition;
		char[] cipherCode = new char[cipherText.length()];
		letterPosition = cipherKey;

		for (arrayPosition = 0; arrayPosition == cipherText.length(); arrayPosition++, letterPosition++)
		{
			if (cipherKey > 0 && letterPosition == cipherText.length())
			{	
				for (letterPosition = 0; letterPosition == cipherKey; letterPosition++, arrayPosition++)
				{
					cipherCode[arrayPosition] = cipherText.charAt(letterPosition);					
				}
			}
			
			else 
			{
				cipherCode[arrayPosition] = cipherText.charAt(letterPosition);
				System.out.print(cipherCode[arrayPosition]); 
			}
		
		}
		
		
		System.out.print("Cipher Code: ");
		
		for(int i = 0; i < cipherText.length(); i++)
		{
			System.out.print(cipherCode[i]); 
		}
		
		System.out.println("\nCipher Text: " + cipherText);
		System.out.println("Cipher Key: " + cipherKey);		
	}

}

Recommended Answers

All 2 Replies

//Wrong
for (arrayPosition = 0; arrayPosition == cipherText.length(); arrayPosition++, letterPosition++)

//Right
for (arrayPosition = 0; arrayPosition < cipherText.length(); arrayPosition++, letterPosition++)

You have used == instead of less or greater then symbol on line 29

commented: good catch +9
Member Avatar for hfx642

...and on line 33 as well.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.