在ZXing返回时,我有代码:
result.getContents().substring(0, 1)
我想获得第一个字符并返回他的字符代码。 geting first char正常工作,但我没有找到将char更改为char代码的代码。
任何想法?
答案 0 :(得分:1)
int charCode = (int) result.getContents().substring(0, 1).charAt(0);
注意:此处可能不需要substring(0,1)
。
答案 1 :(得分:1)
如果要在某个位置获取char,请使用String类中可用的charAt函数。见下文。
$user_exist = $mysqli->query("SELECT COUNT(google_id) as usercount FROM google_users WHERE google_id=$user_id")->fetch_object()->usercount;
$mysqli->query("INSERT INTO google_users (google_id, google_name, google_email, google_link, google_picture_link)
VALUES ($user_id, '$user_name','$email','$profile_url','$profile_image_url')");