我尝试使用 ZXing 创建一个 QR 条码生成器。我想在二维码中编码一个 mecode 对象:http: //www.nttdocomo.co.jp/english/service/developer/make/content/barcode/function/application/addressbook/index.html
我有这个代码
bitMatrix = writer.encode(mecard, BarcodeFormat.QR_CODE, 300, 300);
BufferedImage img = MatrixToImageWriter.toBufferedImage(bitMatrix);
ByteArrayOutputStream os = new ByteArrayOutputStream();
OutputStream b64 = new Base64.OutputStream(os);
ImageIO.write(img, "png", b64);
String result = os.toString("UTF-8");
在创建文本和 url 时生成正确的输出。但是当我尝试编码时"MECARD:N:Doe,John;TEL:(+32) 472 65 58 20;TEL:(+32) 2 577 50 68;EMAIL:John@iCompany.com;;"
,它给出了一个无效的 Base64 字符串。是否有一些编码器无法处理的非法字符?