解决扫描中文生成的二维码为乱码情况

  • 博主原创转载注明地址

    直接上代码:
    布局文件:一个editText,一个button, 一个imageView

button.setOnClickListener(new View.OnClickListener(){
      @Override
      public void onClick(View v){
          if(!TextUtils.isEmpty(editText.getText().toString()){
              imageView.setImageBitmap(ecodeAsBitmap(editText.getText().toString()));

      }
  });

private Bitmap ecodeAsBitmap(String content){
    Bitmap bitmap = null;
    BitMatrix result = null;
    MultiFormatWriter writer = new MultiFormatWriter();
    try{
        Hashtable hints = new Hashtable();
        hints.put(EncodeHintType.CHARACTER, "utf-8");
        //注意BitMatrix构造方法的实现; 
        result = writer.encode(content, BarcodeFormat.QR_CODE, 800,800, hints);
        BarcodeEncoder encoder = new BarcodeEncoder();
        bitmap = encoder.createBitmap(result);
    }catch(WriterException e){
        e.printStackTrace();
    }
    return bitmap;
}






你可能感兴趣的:(解决扫描中文生成的二维码为乱码情况)