public class Security {
public native byte[] DecryptMsg(String strMsg);
public native byte[] EncryptMsg(String strMsg);
public native byte[] EncryptPass(String strPass);
static{
System.loadLibrary("security");
}
}
public class Security {
public native byte[] DecryptMsg(String strMsg);
public native byte[] EncryptMsg(String strMsg);
public native byte[] EncryptPass(String strPass);
static{
System.loadLibrary("security");
}
}
3 回答2.7k 阅读✓ 已解决
3 回答4.2k 阅读✓ 已解决
8 回答3.8k 阅读
4 回答2.8k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
3 回答2.6k 阅读✓ 已解决
4 回答1.9k 阅读
native方法已经写好了,下一步make一下,再下一步生成头文件,再下一步创建c或者c++引入头文件实现里面的方法就可以了。