私の問題は簡単だと思いますが、私はアンドロイドで文字列を暗号化しようとしています。Androidで配列を持つ単純な暗号化解読文字列
、単語やTextBox1テキストボックスに文字を入れているプログラムの目的は、ボタンの暗号化をクリックするとTextBox2をあなたが入れ文字の二番目の配列の同じ位置でシンボルを表示するようにすべきたとえば。
私はENCRYPT
ボタンをクリックして、私はシンボルを入れてDECRYPT
をクリックするとヘルプが必要な場合、アレイ
の位置に相当し、文字を表示しなければならない場合letter A (array 1 [0])
はsymbol $ (array 2 [0])
を示さなければなりません書きます。申し訳ありませんが、文法や質問を編集する、初心者でも英語話者でもなく、私はもっと簡単にしようとしました。
Arreglo
クラスは、2つの配列を宣言するためのクラスです。
package PaqueteArreglo;
public class Arreglo {
public String [] encrypt = new String[3];
public String [] decrypt = new String[3];
}
主な活動
package com.example.encrypt;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import PaqueteArreglo.Arreglo;
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
//Instance the class with the arrays
PaqueteArreglo.Arreglo ins = new Arreglo();
public Button button1,button2;
public EditText text1, text2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initialize();
ins.encrypt[0] = "a";
ins.encrypt[1] = "b";
ins.encrypt[2] = "c";
ins.decrypt[0] = "$";
ins.decrypt[1] = "%";
ins.decrypt[2] = "&";
}
private void initialize(){
text1 = (EditText)findViewById(R.id.txtWord);
text2 = (EditText)findViewById(R.id.txtResult);
button1 = (Button)findViewById(R.id.btnEncrypt);
button1.setOnClickListener(this);
button2 =(Button)findViewById(R.id.btnDecrypt);
button2.setOnClickListener(this);
}
@Override
public void onClick(View view) {
String word = String.valueOf(this.text1.getText());
if (view.getId() == R.id.btnEncrypt)
{
String demo = "";
int lon = 0;
lon = word.length();
for (int i = 0; i < lon; i++)
{
if (ins.encrypt[i].equalsIgnoreCase(String.valueOf(word.charAt(i))))
{
demo = demo + ins.decrypt[i];
text2.setText(demo);
}
}
}
}
}
おそらくHashMapのようなマップを使用して、暗号化文字をそれに一致する復号化文字にマップする必要があります。また、特定の問題が何であるかは不明です。あなたは少し質問を明確にすることができますか? –
答えをありがとう、私は説明をより簡単にするための質問を編集し、私は使用を知らない(とこの目的のために必要ない)HashMap、私はこのメソッドで問題を解決する必要があります、ありがとう。 –
'Arreglo'クラスを表示するように編集してください –