https://play.google.com/store/apps/details?id=com.aicrm.barcode_qrcode_return
이 프로그램은
바코드를 인식하여, 바코드 결과값을 서버로 전송하여, 서버로부터 처리결과값을 리턴받습니다.
처리결과 내용은 사용자의 단말기에 저장되며, CSV파일로 변환하여 메일로 첨부하여 전송할 수 있습니다.
처리결과 내용은 메뉴->스캔기록에서 확인할 수 있습니다.
웹서버를 보유하고 있어야 합니다.
이 프로그램의 사용처는 바코드를 포함한 일련의 인식표에서 바코드를 인식하여,
출근전용 체크, 퇴근전용 체크, 입장권 유효 체크, 예매권 유효 체크 등 여러 환경에서 응용하여 사용할 수 있습니다.
아래의 전달값을 참고하여 응용하시기 바랍니다.
* 스캔완료 소리 사용 : 인식이 완료되면 소리가 재생됩니다.
* 계속스캔 : 스캔인식 완료->처리 후, 다시 스캔여부를 묻지 않습니다.
* 서버주소 : ex)http://www.mydomain.com/check.php?
* 매개변수 : ex)part=1&group=2&
* 서버로 전송시 전달값
- 위 예시의 경우
- 바코드 인식 후,
- 바코드 형식 : CODE_128
- 바코드 인식결과값 : 1234567
- 사용자의 전화번호 : 01012345678
- 사용자의 메일주소 : aaaa@gmail.com 인 경우
- http://www.mydomain.com/check.php?part=1&group=2&code_part=CODE_128&code_value=1234567&phone_number=01012345678&user_email=aaaa@gmail.com
- 으로 전송되며, 이 때, UTF-8 형식으로 전송되며,
- 서버의 해당 처리파일(ex:check.php)에서는, 서버의 환경에 따라,character set 을 맞춰서 입력받으시기 바랍니다.
- 해당 서버주소의 처리파일(ex:check.php)로 부터, 처리결과값을 리턴받을 수 있으며,
- 해당 처리파일(ex:check.php)에는 HTML 태그 등을 포함하지 않습니다.
- 해당 처리파일(ex:check.php)의 사용예는 아래와 같습니다.
<?php
//check.php
$value="가나다";
header("Content-type: text/html; charset=utf-8");
echo $value;
?>
Barcode(QRCode) Server, check the transmission result
This program is
Recognizing the bar code , the bar code and the result is sent to the server , the server receives the return value from the processing result .
Information processing results are stored in the user's terminal , CSV file is converted to the e-mail can be sent as an attachment .
Information about treatment outcomes Menu - > Scan can be found in the record .
Applications of the program , including a set of identification tags on the bar code is recognized by the bar code ,
Dedicated check attendance , work -only check, ticket validity check , check , such as the effective number of advance tickets are available to the application environment .
Web server, you should ensure that you have the.
Note down the value of the transfer application , please
* Using the scan complete sound : recognition is complete, the sound will be played.
* Continues to scan: complete recognition -> After the treatment, regardless of whether or not re-scan .
* Server URL : ex) http://www.mydomain.com/check.php?
* Parameters : ex) part=1&group=2&
* Transfer value is sent to the server when
- In the case of the example
- After the barcode recognition ,
- Barcode formats : CODE_128
- Barcode recognition result is : 1234567
- The user's phone number : 01012345678
- Your e-mail address : aaaa@gmail.com
- http://www.mydomain.com/check.php?part=1&group=2&code_part=CODE_128&code_value=1234567&phone_number=01012345678&user_email=aaaa@gmail.com
- The transmission of this time , UTF-8 format transmitted,
- The server that handles the file (ex: check.php) , the server , depending on the environment , character set , enter the conformity arrangements.
- The processing of the file that the server address (ex: check.php) from , and returns the result can be processed ,
- If the batch file (ex: check.php) does not contain HTML tags such as.
- check.php For example
<?php
//check.php
$value="가나다";
header("Content-type: text/html; charset=utf-8");
echo $value;
?>