Can I have open souce to generate qrcode using java?

link|improve this question

0% accept rate
Maybe, have you asked my good friend google? – Shaded Mar 3 '11 at 15:55
2  
Maybe you should start accepting answers. Please, read the faq. – bluefoot Mar 3 '11 at 15:57
feedback

4 Answers

Try the zxing library at http://code.google.com/p/zxing/. Here's some sample code from http://code.google.com/p/zxing/wiki/ScanningViaIntent:

public Button.OnClickListener mScan = new Button.OnClickListener() {
    public void onClick(View v) {
        Intent intent = new Intent("com.google.zxing.client.android.SCAN");
        intent.setPackage("com.google.zxing.client.android");
        intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
        startActivityForResult(intent, 0);
    }
};

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 0) {
        if (resultCode == RESULT_OK) {
            String contents = intent.getStringExtra("SCAN_RESULT");
            String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
            // Handle successful scan
        } else if (resultCode == RESULT_CANCELED) {
            // Handle cancel
        }
    }
}
link|improve this answer
feedback

Check out this answer and try looking a little before posting a question.

link|improve this answer
feedback

I think you can use Java QR-Code Generator

link|improve this answer
feedback

Take a look at the ZXing lib http://code.google.com/p/zxing/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.