当我尝试编写代码时,会发生以下错误:
doInBackground(字符串...)'在' com ...... QrGenerator'与' doInBackground(Params ...)'发生冲突在' android.os.AsyncTask&#39 ;;重写方法不会抛出com.google.zxing.WriterException'
以下是代码:
private class QrGenerator extends AsyncTask<String,Integer,Bitmap>{
@Override
protected Bitmap doInBackground(String... strings) throws WriterException {
StringBuilder strBuilder = new StringBuilder();
for (int i = 0; i < strings.length; i++) {
strBuilder.append(strings[i]);
}
String value = strBuilder.toString();
BitMatrix bitMatrix;
try {
bitMatrix = new MultiFormatWriter().encode(
value,
BarcodeFormat.DATA_MATRIX.QR_CODE,
QRcodeWidth, QRcodeWidth, null
);
} catch (IllegalArgumentException Illegalargumentexception) {
return null;
}
int bitMatrixWidth = bitMatrix.getWidth();
int bitMatrixHeight = bitMatrix.getHeight();
int[] pixels = new int[bitMatrixWidth * bitMatrixHeight];
for (int y = 0; y < bitMatrixHeight; y++) {
int offset = y * bitMatrixWidth;
for (int x = 0; x < bitMatrixWidth; x++) {
pixels[offset + x] = bitMatrix.get(x, y) ?
getResources().getColor(R.color.QRCodeBlackColor) : getResources().getColor(R.color.QRCodeWhiteColor);
}
}
Bitmap bitmap = Bitmap.createBitmap(bitMatrixWidth, bitMatrixHeight, Bitmap.Config.ARGB_4444);
bitmap.setPixels(pixels, 0, 500, 0, 0, bitMatrixWidth, bitMatrixHeight);
return bitmap;
}
@Override
protected void onPostExecute(Bitmap bitmap) {
super.onPostExecute(bitmap);
imageView.setImageBitmap(bitmap);
}
}
答案 0 :(得分:0)
您不能在重写方法中抛出其他异常,例如doInBackground(...)
。见this link。您必须在方法中捕获异常。我修改了你的方法以捕获WriterException。
try {
bitMatrix = new MultiFormatWriter().encode(
value,
BarcodeFormat.DATA_MATRIX.QR_CODE,
33, 33, null
);
} catch (IllegalArgumentException | WriterException e1) {
e1.printStackTrace();
return null;
}