如何用java写这段代码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用java写这段代码?相关的知识,希望对你有一定的参考价值。
java .net
参考技术A import java.security.InvalidKeyException;import java.security.NoSuchAlgorithmException;import javax.crypto.BadPaddingException;import javax.crypto.Cipher;import javax.crypto.IllegalBlockSizeException;import javax.crypto.KeyGenerator;import javax.crypto.NoSuchPaddingException;import javax.crypto.SecretKey;public class JEncrytionpublic static void main(String[] argv)
try KeyGenerator keygenerator = KeyGenerator.getInstance("DES"); SecretKey myDesKey = keygenerator.generateKey();
Cipher desCipher; // Create the cipher
desCipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
// Initialize the cipher for encryption
desCipher.init(Cipher.ENCRYPT_MODE, myDesKey); //sensitive information
byte[] text = "No body can see me".getBytes();
System.out.println("Text [Byte Format] : " + text);
System.out.println("Text : " + new String(text));
// Encrypt the text
byte[] textEncrypted = desCipher.doFinal(text);
System.out.println("Text Encryted : " + textEncrypted);
// Initialize the same cipher for decryption
desCipher.init(Cipher.DECRYPT_MODE, myDesKey); // Decrypt the text
byte[] textDecrypted = desCipher.doFinal(textEncrypted);
System.out.println("Text Decryted : " + new String(textDecrypted));
catch(NoSuchAlgorithmException e)
e.printStackTrace();
catch(NoSuchPaddingException e)
e.printStackTrace();
catch(InvalidKeyException e)
e.printStackTrace();
catch(IllegalBlockSizeException e)
e.printStackTrace();
catch(BadPaddingException e)
e.printStackTrace();
Arduino IDE:“没有命名类型”,为啥我不能写这段代码? [复制]
【中文标题】Arduino IDE:“没有命名类型”,为啥我不能写这段代码? [复制]【英文标题】:Arduino IDE: "does not name a type", why can't I write this code? [duplicate]Arduino IDE:“没有命名类型”,为什么我不能写这段代码? [复制] 【发布时间】:2017-11-20 20:56:53 【问题描述】:那里有很多解释,但所有解释都非常具体且复杂。
谁能告诉我为什么这个简单的代码不能编译?
int varOne, varTwo, varThree;
varOne = 1;
varTwo = 2;
varThree = 3;
void setup()
// put your setup code here, to run once:
void loop()
// put your main code here, to run repeatedly:
我在开始时定义了三个变量,然后为每个变量设置了值。 我可能会因为发布此内容而受到很多讨厌,但那里根本没有明确的解释。
【问题讨论】:
【参考方案1】:在文件范围内,即在任何函数之外,你可以定义变量(包括它们的初始化)和其他东西,但你不能写像赋值这样的任意语句。
所以你可以写...
int varOne=1, varTwo=2, varThree=3;
是定义和初始化,而
int varOne;
varOne = 1;
是一个定义(合法)后跟一个赋值,这在文件范围内是非法的。
【讨论】:
好的,谢谢,这正是我需要的。我想其中一些问题必须在您自学时提出。【参考方案2】:您不能更改 setup 或 run 方法之外的任何变量,除非您同时定义它们。这是arduino的做事方式,这只是一个问题,因为后台代码都被隐藏了,否则,你可以做同样的事情。我建议:
int var1 = 1, var2 = 2;
或者把它放在设置中:
int var1, var2;
void setup()
var1 = 1;
var2 = 2;
希望对你有帮助!
【讨论】:
以上是关于如何用java写这段代码?的主要内容,如果未能解决你的问题,请参考以下文章
php如何用urlencode()我下面所写的这段代码进行中文加密?