摘要:
第一部分,先说证书的申请。 这步是要到正规的CA公司申请正式的设备证书必须走的步骤。 1、先生成证书的密钥对 打开命令行,切换到某个自己新建的目录下,执行如下命令 keytool -genkey -keyalg RSA -keysize 1024 -dname “CN=www.javastar.or 阅读全文
摘要:
错误信息:The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application 分几种情况: 1 阅读全文
摘要:
非对称加密 阅读全文
摘要:
证书签名 package test; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java. 阅读全文
摘要:
需要引入bouncycastle库的jar包 阅读全文
摘要:
package org.jc.plugins.gzip; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.GZIPInputStream; import java.util.zip.GZIP... 阅读全文
摘要:
File localDir = new File(localPath); if(!localDir.exists()){ localDir.mkdirs(); } File file = new File(localPath + fileName); if(... 阅读全文