问题描述:下载支付宝提供的android手机支付demo时,发现当手机没有安装支付宝客户端时不能正常唤起H5支付界面。 解决办法:修改signutils.java文件中的 KeyFactory keyf = KeyFactory.getInstance(ALGORITHM); 修改为: KeyFactory keyf = KeyFactory.getInstance(ALGORITHM,”BC”); 即可。具体原因懒得查。这解决方法也是网上找的。出处已忘。 希望支付宝官方尽快修正此bug。 安卓版本:4.2.2 悲剧的是在6.0上,也扔不能正常唤起H5支付。。。 解决了,安卓6.0以下,对权限
Read more月度归档: 2017年6月
支付宝APP支付的android demo不能正常唤起H5支付的解决办法
android-svg如何转成xml矢量vector图片
在线网址: http://inloop.github.io/svg2android/ Bake transforms into path (experimental) 这个选项不要勾选
Read more
在线网址: http://inloop.github.io/svg2android/ Bake transforms into path (experimental) 这个选项不要勾选
Read morephp 生成RSA非对称加密用的证书-cer-pfx文件
首先,关于RSA的加密介绍文章,就不多说了。直接看这个网页吧(作者写的计算机科普文章是极好的) http://www.ruanyifeng.com/blog/2013/06/rsa_algorithm_part_one.html 我要实现的功能就是通过这对公钥和密钥,实现客户端软件对密码进行加密(采用公钥),然后网站端(php)采用密钥进行解密验证。 开始吧。 php服务端利用内置函数生成公钥和密钥。记得这需要php服务器安装了openssl扩展。先生成cer文件和pfx文件。cer文件相当于公钥(可以发给客户端),pfx是密钥(必须严格保存于服务器端不能泄露)。 $dn = array( “
Read more
首先,关于RSA的加密介绍文章,就不多说了。直接看这个网页吧(作者写的计算机科普文章是极好的) http://www.ruanyifeng.com/blog/2013/06/rsa_algorithm_part_one.html 我要实现的功能就是通过这对公钥和密钥,实现客户端软件对密码进行加密(采用公钥),然后网站端(php)采用密钥进行解密验证。 开始吧。 php服务端利用内置函数生成公钥和密钥。记得这需要php服务器安装了openssl扩展。先生成cer文件和pfx文件。cer文件相当于公钥(可以发给客户端),pfx是密钥(必须严格保存于服务器端不能泄露)。 $dn = array( “
Read moreandroid 网络连接库volley的get和post的使用
首先添加: private RequestQueue mRequestQueue; 在oncreate添加 mRequestQueue = Volley.newRequestQueue(this); JsonObjectRequest post请求并用添加参数 HashMap<String,String> map = new HashMap<String,String>(); map.put(“customer_type”,strCustomerType); map.put(“customer_code”,strCustomerCode); map.put
Read more
首先添加: private RequestQueue mRequestQueue; 在oncreate添加 mRequestQueue = Volley.newRequestQueue(this); JsonObjectRequest post请求并用添加参数 HashMap<String,String> map = new HashMap<String,String>(); map.put(“customer_type”,strCustomerType); map.put(“customer_code”,strCustomerCode); map.put
Read more