我正在尝试测试这个库
http://blog.cwill-dev.com/2012/10/09/encryption-between-javaandroid-and-php/
使用此代码
ApiCrypter ApiCrypter = new ApiCrypter();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_profile);
try {
String encryptedRequest = ApiCrypter.bytesToHex(this.ApiCrypter.encrypt("hello world"));
Toast.makeText(this, encryptedRequest, Toast.LENGTH_LONG).show();
} catch (Exception e) {
e.printStackTrace();
}
在页面中提到的示例中
String encryptedRequest = ApiCrypter.bytesToHex(this.apiCrypter.encrypt(jsonParams.toString()));
但是“apiCrypter”不存在所以我使用了实例“ApiCrypter”
但是吐司根本没有被触发。我试图在 TextView 中显示该值,但它也是空的。请问有什么帮助吗?
慕斯709654
湖上湖
相关分类