A. 安卓手機如何掃描條形碼
別太近也別太遠,綠色點閃動得越快說明就是在接近正確方法,自己多試試,很簡單的
B. 手機下載什麼軟體可以掃描條碼
手機可以使用微信客戶端掃描條形碼,具體的操作方法參考如下:
1、在手機桌面找到微信圖標,點擊打開微信客戶端。
C. 如何在安卓手機開發利用手機攝像頭掃描一維條形碼及對其進行本地分析(不聯網)、最後儲存為文本文件....
導入第三方jar,如QrCodeScan-master,裡面已經集成了調用手機攝像頭掃描的方法,你只需把它集成到你 的項目中就可以了。至於開發環境:Windows,牛逼的就用Linux。開發工具:eclipse或者android studio都可以
D. 求條形碼識別源碼
C#語言:public string bar_code(object str, int ch, int cw, int type_code)
{
string strTmp=str.ToString();
string code=strTmp;
strTmp=strTmp.ToLower();
int height=ch;
int width=cw;
strTmp=strTmp.Replace("0", "_|_|__||_||_|");;
strTmp=strTmp.Replace("1", "_||_|__|_|_||");
strTmp=strTmp.Replace("2", "_|_||__|_|_||");
strTmp=strTmp.Replace("3", "_||_||__|_|_|");
strTmp=strTmp.Replace("4", "_|_|__||_|_||");
strTmp=strTmp.Replace("5", "_||_|__||_|_|");
strTmp=strTmp.Replace("7", "_|_|__|_||_||");
strTmp=strTmp.Replace("6", "_|_||__||_|_|");
strTmp=strTmp.Replace("8", "_||_|__|_||_|");
strTmp=strTmp.Replace("9", "_|_||__|_||_|");
strTmp=strTmp.Replace("a", "_||_|_|__|_||");
strTmp=strTmp.Replace("b", "_|_||_|__|_||");
strTmp=strTmp.Replace("c", "_||_||_|__|_|");
strTmp=strTmp.Replace("d", "_|_|_||__|_||");
strTmp=strTmp.Replace("e", "_||_|_||__|_|");
strTmp=strTmp.Replace("f", "_|_||_||__|_|");
strTmp=strTmp.Replace("g", "_|_|_|__||_||");
strTmp=strTmp.Replace("h", "_||_|_|__||_|");
strTmp=strTmp.Replace("i", "_|_||_|__||_|");
strTmp=strTmp.Replace("j", "_|_|_||__||_|");
strTmp=strTmp.Replace("k", "_||_|_|_|__||");
strTmp=strTmp.Replace("l", "_|_||_|_|__||");
strTmp=strTmp.Replace("m", "_||_||_|_|__|");
strTmp=strTmp.Replace("n", "_|_|_||_|__||");
strTmp=strTmp.Replace("o", "_||_|_||_|__|");
strTmp=strTmp.Replace("p", "_|_||_||_|__|");
strTmp=strTmp.Replace("r", "_||_|_|_||__|");
strTmp=strTmp.Replace("q", "_|_|_|_||__||");
strTmp=strTmp.Replace("s", "_|_||_|_||__|");
strTmp=strTmp.Replace("t", "_|_|_||_||__|");
strTmp=strTmp.Replace("u", "_||__|_|_|_||");
strTmp=strTmp.Replace("v", "_|__||_|_|_||");
strTmp=strTmp.Replace("w", "_||__||_|_|_|");
strTmp=strTmp.Replace("x", "_|__|_||_|_||");
strTmp=strTmp.Replace("y", "_||__|_||_|_|");
strTmp=strTmp.Replace("z", "_|__||_||_|_|");
strTmp=strTmp.Replace("-", "_|__|_|_||_||");
strTmp=strTmp.Replace("*", "_|__|_||_||_|");
strTmp=strTmp.Replace("/", "_|__|__|_|__|");
strTmp=strTmp.Replace("%", "_|_|__|__|__|");
strTmp=strTmp.Replace(" ", "_|__|_|__|__|");
strTmp=strTmp.Replace(".", "_||__|_|_||_|");
strTmp=strTmp.Replace("_", "<span style='height:" height ";width:" width ";background:#FFFFFF;'></span>");
strTmp=strTmp.Replace("|", "<span style='height:" height ";width:" width ";background:#000000;'></span>");
if(type_code==1)
{
return strTmp "<BR>" code;
}
else
{
return strTmp;
}
}參考地址: http://www.7747.net/kf/201009/74759.html
E. 關於安卓系統的條碼掃描軟體,通常手機條碼掃描儀軟體識別出條碼後都...
條碼掃描器庫存 v2.1
條形碼掃描儀應用程序:SCANPET是您完美的庫存物資管理員。它是一個通過使用Excel作為產品資料庫的條形碼掃描儀。您只需用手機上的攝像頭來讀取項目條形碼,它便會在您的Excel文件中查找到該項目的信息。SCANPET將貨品管理員、庫存物資管理員、Excel資料庫和條形碼掃描儀集於一身:您可以使用SCANPET來管理您的庫存物資登記、掌控您的商店、或者讀取條形碼,等等。建立屬於您自己的項目資料庫就如同創建一個Excel文件一樣簡單。無線網路掃描儀(WiFi終端):如果您需要將掃描的條形碼直接載入您電腦上的文件時,使用本程序意味著用手機讀取條形碼,然後通過Wifi將其發送到您的電腦。它將充當一個Wifi終端
F. android裡面 條形碼掃描 應該是怎麼做的,有沒有源碼 什麼的,發一個給我啊
1、下載ZBar官方SDK程序(下載鏈接:http://zbar.sourceforge.net/index.html),並打開項目,如下圖: