java實現二維碼掃碼下載APP
1.需要的元件
/**
* 生成二維碼(QRCode)圖片的公共方法
* @param content 儲存內容
* @param imgType 圖片型別
* @param size 二維碼尺寸
* @return
*/
private static BufferedImage qRCodeCommon(String content, String imgType, int size) {
BufferedImage bufImg = null;
try {
Qrcode qrcodeHandler = new Qrcode();
// 設定二維碼排錯率,可選L(7%)、M(15%)、Q(25%)、H(30%),排錯率越高可儲存的資訊越少,但對二維碼清晰度的要求越小
qrcodeHandler.setQrcodeErrorCorrect('M');
qrcodeHandler.setQrcodeEncodeMode('B');
// 設定設定二維碼尺寸,取值範圍1-40,值越大尺寸越大,可儲存的資訊越大
qrcodeHandler.setQrcodeVersion(size);
// 獲得內容的位元組陣列,設定編碼格式
byte[] contentBytes = content.getBytes("utf-8");
// 圖片尺寸
int imgSize = 67 + 12 * (size - 1);
bufImg = new BufferedImage(imgSize, imgSize, BufferedImage.TYPE_INT_RGB);
Graphics2D gs = bufImg.createGraphics();
// 設定背景顏色
gs.setBackground(Color.WHITE);
gs.clearRect(0, 0, imgSize, imgSize);
// 設定影象顏色> BLACK
gs.setColor(Color.BLACK);
// 設定偏移量,不設定可能導致解析出錯
int pixoff = 2;
// 輸出內容> 二維碼
if (contentBytes.length > 0 && contentBytes.length < 800) {
boolean[][] codeOut = qrcodeHandler.calQrcode(contentBytes);
for (int i = 0; i < codeOut.length; i++) {
for (int j = 0; j < codeOut.length; j++) {
if (codeOut[j][i]) {
gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);
}
}
}
} else {
throw new Exception("QRCode content bytes length = " + contentBytes.length + " not in [0, 800].");
}
gs.dispose();
bufImg.flush();
} catch (Exception e) {
e.printStackTrace();
}
return bufImg;
}
2.掃碼二維碼下載APP實現
針對android 只需要返回app安裝包的地址就OK
針對ios 需要跳轉到網頁,網頁點選安裝,線上直接安裝ipa
如何判斷掃碼的手機型別?
if (!Tools.isEmpty(UserAgentStr)) {
UserAgentStr = UserAgentStr.toLowerCase();
int isIPhone = UserAgentStr.indexOf("iphone os");
int isAndroid = UserAgentStr.indexOf("android");
if (isIPhone >= 0) {
type= "ios";
}
if (isAndroid >= 0) {
type= "android";
}
}
實現跳轉的Jsp downloadurl = https://192.168.34.92/resource_drive/appDownload/ios/d.plist
<script type="text/javascript">
var type = "${type}";
if(type == "android"){
window.location.href="${downloadurl}";
}
</script>
<body>
<a href="itms-services://?action=download-manifest&url=${downloadurl}" class="testbutton">一鍵安裝雲網盤iPhone版</a>
</body>
這個d.plist參考地址:http://blog.163.com/it_kidworkroom/blog/static/1247284832014101310511727/
特別注意地方
在IOS7系統之前,請求是http,之後必須採用https(這個坑了不少時間)
https又設計到, 伺服器的證書和ios.ipa的證書