A. 我想用java設計一個條形碼掃描器,將掃描的數字在資料庫中查找詳細信息,請問如何實現解決有+
我以前寫過超市掃碼的,首先得有一個掃碼槍,頁面上讓游標在文本框內,按一下掃碼槍就會自動將貨物的條形碼顯示在你的文本框中了,掃碼槍將條形碼顯示在文本框中默認帶一個回車,你就用javascript觸發回車事件,寫一個方法,從後台資料庫中根據條形碼查到具體的詳細信息顯示到頁面上就行了,用ajax提交
B. 求Java大神給個代碼!計算驗證條形碼
public class Ean13Barcode {
private String code;
public Ean13Barcode(String code) {
super();
this.code = code;
}
public String encode() {
if (null == code) {
return "";
}
char[] codes = code.toCharArray();
int sum = 0;
for (int i = 0; i < codes.length; i++) {
int num = codes[i] - '純御0';
if (isEven(num)) {
sum += num;
} else {
sum += num * 3;
}
}
int x = sum % 10;
return code + (x == 0 ? 0 : 10 - x);
}
private boolean isEven(int x) {
return x % 2 == 0;
}
public static void main(String[] args) {
System.out.println(new Ean13Barcode("做配岩692223361219"賣悶).encode());
}
}