gpt4 book ai didi

java - 如何从扫描仪读取字符串,并将每个字母转换为不同的值?

转载 作者:太空宇宙 更新时间:2023-11-04 11:00:25 24 4
gpt4 key购买 nike

我正在研究一个已作为文件导入的字符串,获取每个字符,并通过将其更改为下一个字母来“加密”它。基本上,a 是 b,b 是 c,c 是 d,等等。它不安全,但并不意味着用于这些目的。扫描的字符串可以是任何内容,但我使用的是“橙汁很棒!我昨天喝了 83,214 杯。”它位于名为 input.txt 的文件中。

我的代码如下:

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

public class ReadFileExample{

public static void main(String[] args){

//String fileName = "input.txt";
//File file = new File(fileName);
//Scanner in = new Scanner(file);
try{
Scanner in = new Scanner(new File("input.txt"));
while(in.hasNext() == true){
String input = in.next();
System.out.println(input);

}
}
in.close();
}
catch(FileNotFoundException exception){
System.out.println("Could not find the file.");
}

}

}

我考虑过将字符串转换为数组,但我不知道如何去做。也许像这样?

char[] charArray = input.toCharArray();
for (char c : charArray){
System.out.println(c);
}

我真的不知道该去哪里。我还想知道 for(i = 0; i < string.length; i++) 也不知道如何去做。完成后,我需要将其打印出来。然后,我需要使用相同的字符串,再次对其进行加密。

第二种文件加密技术是将每个字母替换为其在字母表中的位置。我们将为每个字母使用两位数字。例如,字母“a”是 01,字母“b”是 02,字母“c”是 03,字母“z”是 26。为了可以使用大写字母,“A”以 27 开头,“B”以 28 开头,“C”以 29 开头,依此类推。

对于数字,我们将每个数字转换为两个字母:它们代表的前两个字母。第一个字母大写,后面跟着一个小写字母。例如,8写出来就是八。因此,8 将被加密为“Ei”,1 将被加密为“On”,2 将被加密为“Tw”,3 将被加密为“Th”,依此类推。

请注意,“10”实际上是两个数字,因此它会被加密为“1”和“0”:“OnZe”

如果遇到非字母字符(空格、标点符号、数字等),只需按原样打印它们,无需加密。

任何帮助都会受到赞赏,即使它建议搜索什么来回答我的问题。

最佳答案

这是下面的代码,代码解释在评论中,如果您需要更多帮助请在下面评论,演示可以在下面的链接找到!我已经给出了您给出的示例中的静态字符串的演示。

Demo

import java.util.HashMap;

/**
*
* @author Sai-Karan
*/
public class App {

//Function to return the substring for the second encoding method
//Example 1 will return On, and 2 will return Tw ....etc
public static String findstringmap(char c)
{
//Create a hashmap and add the key elements and the string definitions
HashMap <Integer, String> hmap = new HashMap <Integer, String>();

/*Adding elements to HashMap*/
hmap.put(1, "One");
hmap.put(2, "Two");
hmap.put(3, "Three");
hmap.put(4, "Four");
hmap.put(5, "Five");
hmap.put(6, "Six");
hmap.put(7, "Seven");
hmap.put(8, "Eight");
hmap.put(9, "Nine");
hmap.put(0, "Zero");

/* Get values based on key*/
int num_value = Character.getNumericValue(c);
//convert to the numeric value
String var = hmap.get(num_value);
//get the substring
String ret_str = var.substring(0, 2);
return ret_str;
}
public static void main(String[] args) {
// TODO code application logic here

String l1 = "Orange juice is great! I drank 83,214 cups of it yesterday.";
//String final contains the result
String Final = "";
String next = "";
for(int i =0 ; i< l1.length(); i++)
{
//char c = l1.charAt(i);

if (l1.charAt(i) == ' ')
{
next = " ";
}
else if (l1.charAt(i) == '!')
{
next = "!";
}
else if(l1.charAt(i) == ',')
{
next = ",";
}
else if(l1.charAt(i) == '.')
{
next = ".";
}
else if(!(Character.isDigit(l1.charAt(i))))
{
int val = l1.charAt(i);
next = String.valueOf( (char) (val + 1));

// System.out.println(next);
}
else if(Character.isDigit(l1.charAt(i)))
{
next = findstringmap(l1.charAt(i));

}
Final = Final + next;

}
System.out.println(Final);
}

}

关于java - 如何从扫描仪读取字符串,并将每个字母转换为不同的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46965474/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com