1
我想將字符串轉換爲鍵類型。如何在字符串中鍵入字符串java
BufferedReader br = new BufferedReader(new FileReader(publicKeyFile));
String publicKey = br.readLine();//(Key) keyIn.readObject();
br.close();
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.WRAP_MODE, publicKey);
cipher.init(Cipher.WRAP_MODE, publicKey);
需要與接口Key
的類型publickey
。
那麼如何將字符串轉換爲鍵?
http://stackoverflow.com/questions/12292389/converting-key-to-string-and-back-to-key-java – McLovin
我不知道,但「cast」不是正確的動詞使用這裏。 「解析」可能更像它。 –
我也找到了這個答案:http://stackoverflow.com/a/8029555/16959 –