问题描述
- zxing 3.0.1生成二维码
-
zxing 3.0.1生成二维码,这么写怎么就是不对,MatrixToImageWriter类找不到,应该怎么写? String contents = ""今天,我们来简单聊聊google开源项目——ZXing(二维条码编解码)""; Hashtable<EncodeHintType String> hints = new Hashtable<EncodeHintType String>(); hints.put(EncodeHintType.CHARACTER_SETGBK""); BitMatrix matrix = null; try { matrix = new MultiFormatWriter().encode(contents BarcodeFormat.QR_CODE 300 300 hints); } catch (WriterException e) { e.printStackTrace(); } File file = new File(""D://qrcodeImage.png""); try { MatrixToImageWriter.writeToFile(matrixpng"" file); } catch (IOException e) { e.printStackTrace(); }
解决方案
Class MatrixToImageWriter是在com.google.zxing.client.j2se包下面的,导入这个包试试
时间: 2024-10-05 01:25:56