电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術(shù)文章
文章詳情頁

Java zxing生成條形碼和二維嗎代碼實(shí)例

瀏覽:81日期:2022-09-05 08:19:21

在如今的生活中,二維碼隨處可見,二維碼的出現(xiàn)既減少了宣傳紙張的浪費(fèi),又方便了人們的生活。這一篇我來說說 Java 利用第三方 Jar 包 zxing 生成二維碼。

依賴

<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.3</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.3.3</version></dependency>

生成二維碼

package code;import com.google.zxing.*;import com.google.zxing.common.BitMatrix;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;import org.apache.commons.codec.binary.Base64;import org.apache.commons.codec.binary.Base64OutputStream;import javax.imageio.ImageIO;import java.awt.*;import java.awt.image.BufferedImage;import java.io.*;import java.util.HashMap;import java.util.Map;public class QRCodeKit { public static final String QRCODE_DEFAULT_CHARSET = 'UTF-8'; public static final int QRCODE_DEFAULT_HEIGHT = 300; public static final int QRCODE_DEFAULT_WIDTH = 300; private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; public static void main(String[] args) throws IOException, NotFoundException { String data = 'https://www.jianshu.com/p/748aa03cc1e8?ddd=dsdsdsdsddsdsdsdsdsdsdsdsd'; File logoFile = new File('C:/1.png'); BufferedImage image = QRCodeKit.createQRCodeWithLogo(data, logoFile); ImageIO.write(image, 'png', new File('D:/result7.png')); System.out.println('done'); } /** * Create qrcode with default settings * * @param data * @return * @author stefli */ public static BufferedImage createQRCode(String data) { return createQRCode(data, QRCODE_DEFAULT_WIDTH, QRCODE_DEFAULT_HEIGHT); } /** * Create qrcode with default charset * * @param data * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, int width, int height) { return createQRCode(data, QRCODE_DEFAULT_CHARSET, width, height); } /** * Create qrcode with specified charset * * @param data * @param charset * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, String charset, int width, int height) { Map hint = new HashMap(); hint.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); hint.put(EncodeHintType.CHARACTER_SET, charset); return createQRCode(data, charset, hint, width, height); } /** * Create qrcode with specified hint * * @param data * @param charset * @param hint * @param width * @param height * @return * @author stefli */ public static BufferedImage createQRCode(String data, String charset, Map<EncodeHintType, ?> hint, int width, int height) { BitMatrix matrix; try { matrix = new MultiFormatWriter().encode(new String(data.getBytes(charset), charset), BarcodeFormat.QR_CODE, width, height, hint); return toBufferedImage(matrix); } catch (WriterException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } } /** * toBufferedImage * * @param matrix * @return */ public static BufferedImage toBufferedImage(BitMatrix matrix) { int width = matrix.getWidth(); int height = matrix.getHeight(); BufferedImage image = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) {image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE); } } return image; } /** * Create qrcode with default settings and logo * * @param data * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, File logoFile) { return createQRCodeWithLogo(data, QRCODE_DEFAULT_WIDTH, QRCODE_DEFAULT_HEIGHT, logoFile); } /** * Create qrcode with default charset and logo * * @param data * @param width * @param height * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, int width, int height, File logoFile) { return createQRCodeWithLogo(data, QRCODE_DEFAULT_CHARSET, width, height, logoFile); } /** * Create qrcode with specified charset and logo * * @param data * @param charset * @param width * @param height * @param logoFile * @return * @author stefli */ @SuppressWarnings({'unchecked', 'rawtypes'}) public static BufferedImage createQRCodeWithLogo(String data, String charset, int width, int height, File logoFile) { Map hint = new HashMap(); hint.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); hint.put(EncodeHintType.CHARACTER_SET, charset); hint.put(EncodeHintType.MARGIN, 2); return createQRCodeWithLogo(data, charset, hint, width, height, logoFile); } /** * Create qrcode with specified hint and logo * * @param data * @param charset * @param hint * @param width * @param height * @param logoFile * @return * @author stefli */ public static BufferedImage createQRCodeWithLogo(String data, String charset, Map<EncodeHintType, ?> hint, int width, int height, File logoFile) { try { BufferedImage qrcode = createQRCode(data, charset, hint, width, height); BufferedImage logo = ImageIO.read(logoFile); BufferedImage combined = new BufferedImage(height, width, BufferedImage.TYPE_INT_ARGB); Graphics2D g = (Graphics2D) combined.getGraphics(); //設(shè)置二維碼大小,太大,會(huì)覆蓋二維碼,此處20% int logoWidth = logo.getWidth() > qrcode.getWidth() * 2 / 10 ? (qrcode.getWidth() * 2 / 10) : logo.getWidth(); int logoHeight = logo.getHeight() > qrcode.getHeight() * 2 / 10 ? (qrcode.getHeight() * 2 / 10) : logo.getHeight(); //設(shè)置logo圖片放置位置--中心 int x = Math.round((qrcode.getWidth() - logoWidth) / 2); int y = Math.round((qrcode.getHeight() - logoHeight) / 2); g.drawImage(qrcode, 0, 0, null); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1f)); //開始合并繪制圖片 g.drawImage(logo, x, y, logoWidth, logoHeight, null); g.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15); //logo邊框大小 g.setStroke(new BasicStroke(3)); //logo邊框顏色 g.setColor(Color.white); g.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15); g.dispose(); logo.flush(); qrcode.flush(); return combined; } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } } /** * Return base64 for image * * @param image * @return * @author stefli */ public static String getImageBase64String(BufferedImage image) { String result = null; try { ByteArrayOutputStream os = new ByteArrayOutputStream(); OutputStream b64 = new Base64OutputStream(os); ImageIO.write(image, 'png', b64); result = os.toString('UTF-8'); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e.getMessage(), e); } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } return result; } /** * Decode the base64Image data to image * * @param base64ImageString * @param file * @author stefli */ public static void convertBase64StringToImage(String base64ImageString, File file) { FileOutputStream os; try { Base64 d = new Base64(); byte[] bs = d.decode(base64ImageString); os = new FileOutputStream(file.getAbsolutePath()); os.write(bs); os.close(); } catch (FileNotFoundException e) { throw new RuntimeException(e.getMessage(), e); } catch (IOException e) { throw new RuntimeException(e.getMessage(), e); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); } }}

import java.awt.Color;import java.awt.Font;import java.awt.Graphics2D;import java.awt.image.BufferedImage;import java.io.ByteArrayOutputStream;import java.io.File;import java.util.Arrays;import java.util.Date;import java.util.HashMap;import java.util.Map; import javax.imageio.ImageIO; import org.apache.commons.codec.binary.Base64;import org.apache.commons.io.IOUtils;import org.apache.commons.lang.StringUtils; import com.google.zxing.BarcodeFormat;import com.google.zxing.BinaryBitmap;import com.google.zxing.DecodeHintType;import com.google.zxing.EncodeHintType;import com.google.zxing.LuminanceSource;import com.google.zxing.MultiFormatReader;import com.google.zxing.MultiFormatWriter;import com.google.zxing.Result;import com.google.zxing.WriterException;import com.google.zxing.client.j2se.BufferedImageLuminanceSource;import com.google.zxing.client.j2se.MatrixToImageConfig;import com.google.zxing.common.BitMatrix;import com.google.zxing.common.HybridBinarizer;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; /** * ZXing二維碼生成/解碼 */public class ZXingCode { public static void main(String[] args) throws WriterException { try { String logoPath = 'F:/logo.jpg'; String logo_savePath = 'F:/' + new Date().getTime() + '.png'; String str = toQRCode('http://blog.csdn.net/phil_jing', logoPath, logo_savePath, 'CSDN博客'); System.out.println('finished zxing QRcode encode.'); System.out.println(Arrays.toString(Base64.decodeBase64(str))); } catch (Exception e) { e.printStackTrace(); } } /** * 生成二維碼圖片 * @param content * @param logoPath * @param savePath * @param remark * @return */ public static String toQRCode(String content, String logoPath, String savePath, String remark) { int width = 400, height = 400; try { BufferedImage bim = toBufferedImage(content, BarcodeFormat.QR_CODE, width, height, toDecodeHintType()); return encode(bim, logoPath, savePath, new LogoConfig(), remark); } catch (Exception e) { e.printStackTrace(); } return null; } /** * 是否需要給二維碼圖片添加Logo * @param bim * @param logoPath * @param savePath * @param logoConfig * @param remark * @return */ private static String encode(BufferedImage bim, String logoPath, String savePath, LogoConfig logoConfig, String remark) { ByteArrayOutputStream baos = null; try { /** * 讀取二維碼圖片 */ BufferedImage image = bim; if(StringUtils.isBlank(logoPath)){ //不需要添加logobaos = new ByteArrayOutputStream();baos.flush();ImageIO.write(image, 'png', baos);//流輸出//ImageIO.write(bim, 'png', new File(savePath));//直接寫入某路徑,本地測試加上return Base64.encodeBase64URLSafeString(baos.toByteArray());//Encodes binary data using a URL-safe variation of the base64 algorithm } /** * 構(gòu)建繪圖對(duì)象 */ Graphics2D g = image.createGraphics(); /** * 讀取Logo圖片 */ BufferedImage logo = ImageIO.read(new File(logoPath)); /** * 設(shè)置logo的大小,設(shè)置為二維碼圖片的20%,因?yàn)檫^大會(huì)蓋掉二維碼 */ int widthLogo = logo.getWidth(null) > image.getWidth() * 3 / 10 ? (image.getWidth() * 3 / 10) : logo.getWidth(null), heightLogo = logo.getHeight(null) > image.getHeight() * 3 / 10 ? (image.getHeight() * 3 / 10) : logo.getWidth(null); /** * logo放在中心 */ int x = (image.getWidth() - widthLogo) / 2; int y = (image.getHeight() - heightLogo) / 2; /** * logo放在右下角 int x = (image.getWidth() - widthLogo); int y = (image.getHeight() - heightLogo); */ // 開始繪制圖片 g.drawImage(logo, x, y, widthLogo, heightLogo, null); // g.drawRoundRect(x, y, widthLogo, heightLogo, 15, 15); // g.setStroke(new BasicStroke(logoConfig.getBorder())); // g.setColor(logoConfig.getBorderColor()); // g.drawRect(x, y, widthLogo, heightLogo); g.dispose(); // 把備注添加上去,備注不要太長超過兩行會(huì)自動(dòng)截取 if ( StringUtils.isNotBlank(remark)){// 新的圖片,把帶logo的二維碼下面加上文字BufferedImage outImage = new BufferedImage(400, 445, BufferedImage.TYPE_4BYTE_ABGR);Graphics2D outg = outImage.createGraphics();// 畫二維碼到新的面板outg.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);// 畫文字到新的面板outg.setColor(Color.BLACK);outg.setFont(new Font('微軟雅黑', Font.BOLD, 30)); // 字體、字型、字號(hào)int strWidth = outg.getFontMetrics().stringWidth(remark);if (strWidth > 399) { // //長度過長就截取前面部分 // outg.drawString(productName, 0, image.getHeight() + // (outImage.getHeight() - image.getHeight())/2 + 5 ); //畫文字 String productName1 = remark.substring(0, remark.length() / 2); String productName2 = remark.substring(remark.length() / 2, remark.length()); int strWidth1 = outg.getFontMetrics().stringWidth(productName1); int strWidth2 = outg.getFontMetrics().stringWidth(productName2); outg.drawString(productName1, 200 - strWidth1 / 2, image.getHeight() + (outImage.getHeight() - image.getHeight()) / 2 + 12); BufferedImage outImage2 = new BufferedImage(400, 485, BufferedImage.TYPE_4BYTE_ABGR); Graphics2D outg2 = outImage2.createGraphics(); outg2.drawImage(outImage, 0, 0, outImage.getWidth(), outImage.getHeight(), null); outg2.setColor(Color.BLACK); outg2.setFont(new Font('微軟雅黑', Font.BOLD, 30)); // 字體、字型、字號(hào) outg2.drawString(productName2, 200 - strWidth2 / 2, outImage.getHeight() + (outImage2.getHeight() - outImage.getHeight()) / 2 + 5); outg2.dispose(); outImage2.flush(); outImage = outImage2;} else { outg.drawString(remark, 200 - strWidth / 2, image.getHeight() + (outImage.getHeight() - image.getHeight()) / 2 + 12); // 畫文字}outg.dispose();outImage.flush();image = outImage; } logo.flush(); image.flush(); baos = new ByteArrayOutputStream(); baos.flush(); ImageIO.write(image, 'png', baos); //不用MatrixToImageWriter //ImageIO.write(image, 'png', new File(savePath));//直接寫入某路徑 return Base64.encodeBase64URLSafeString(baos.toByteArray()); } catch (Exception e) { e.printStackTrace(); } finally { IOUtils.closeQuietly(baos); } return null; } /** * 生成二維碼bufferedImage圖片 * @param content 編碼內(nèi)容 * @param barcodeFormat 編碼類型 * @param width 圖片寬度 * @param height 圖片高度 * @param hints 設(shè)置參數(shù) * @return */ private static BufferedImage toBufferedImage(String content, BarcodeFormat barcodeFormat, int width, int height, Map<EncodeHintType, ?> hints) { MultiFormatWriter multiFormatWriter = null; BitMatrix bitMatrix = null; BufferedImage image = null; try { multiFormatWriter = new MultiFormatWriter(); // 參數(shù)順序分別為:編碼內(nèi)容,編碼類型,生成圖片寬度,生成圖片高度,設(shè)置參數(shù) bitMatrix = multiFormatWriter.encode(content, barcodeFormat, width, height, hints); int w = bitMatrix.getWidth(); int h = bitMatrix.getHeight(); image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); // 開始利用二維碼數(shù)據(jù)創(chuàng)建Bitmap圖片,分別設(shè)為黑(0xFFFFFFFF)白(0xFF000000)兩色 for (int x = 0; x < w; x++) {for (int y = 0; y < h; y++) { image.setRGB(x, y, bitMatrix.get(x, y) ? MatrixToImageConfig.BLACK : MatrixToImageConfig.WHITE);} } } catch (WriterException e) { e.printStackTrace(); } return image; } /** * 設(shè)置二維碼的格式參數(shù) * @return */ private static Map<EncodeHintType, Object> toDecodeHintType() { // 用于設(shè)置QR二維碼參數(shù) Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>(); // 設(shè)置QR二維碼的糾錯(cuò)級(jí)別(H為最高級(jí)別)具體級(jí)別信息 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 設(shè)置編碼方式 hints.put(EncodeHintType.CHARACTER_SET, 'UTF-8'); hints.put(EncodeHintType.MARGIN, 0); //hints.put(EncodeHintType.MAX_SIZE, 350);//Only applicable to Data Matrix now //hints.put(EncodeHintType.MIN_SIZE, 100);//Only applicable to Data Matrix now return hints; } /** * 二維碼解碼 * * @param imgPath * @return */ public static String decode(String imgPath) { BufferedImage image = null; Result result = null; try { File file = new File(imgPath); image = ImageIO.read(file); if (image == null) {System.out.println('the decode image may be not exit.'); } LuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); Map<DecodeHintType, Object> hints = new HashMap<DecodeHintType, Object>(); hints.put(DecodeHintType.CHARACTER_SET, 'UTF-8'); result = new MultiFormatReader().decode(bitmap, hints); return result.getText(); } catch (Exception e) { e.printStackTrace(); } return null; }}/** * Logo圖片配置 */class LogoConfig { // logo默認(rèn)邊框顏色 public static final Color DEFAULT_BORDERCOLOR = Color.WHITE; // logo默認(rèn)邊框?qū)挾? public static final int DEFAULT_BORDER = 2; // logo大小默認(rèn)為照片的1/5 public static final int DEFAULT_LOGOPART = 5; private final int border = DEFAULT_BORDER; private final Color borderColor; private final int logoPart; /** * Creates a default config with on color {@link #BLACK} and off color * {@link #WHITE}, generating normal black-on-white barcodes. */ public LogoConfig() { this(DEFAULT_BORDERCOLOR, DEFAULT_LOGOPART); } public LogoConfig(Color borderColor, int logoPart) { this.borderColor = borderColor; this.logoPart = logoPart; } public Color getBorderColor() { return borderColor; } public int getBorder() { return border; } public int getLogoPart() { return logoPart; }}

生成條形碼

import java.awt.image.BufferedImage;import java.io.File; import javax.imageio.ImageIO; import com.google.zxing.BarcodeFormat;import com.google.zxing.BinaryBitmap;import com.google.zxing.LuminanceSource;import com.google.zxing.MultiFormatReader;import com.google.zxing.MultiFormatWriter;import com.google.zxing.Result;import com.google.zxing.client.j2se.BufferedImageLuminanceSource;import com.google.zxing.client.j2se.MatrixToImageWriter;import com.google.zxing.common.BitMatrix;import com.google.zxing.common.HybridBinarizer; /** * ZXing條形碼編碼/解碼 */public class ZxingCode { /** * 條形碼編碼 * * @param contents * @param width * @param height * @param imgPath */ public static void encode(String contents, int width, int height, String imgPath) { int codeWidth = 3 + // start guard(7 * 6) + // left bars+ // middle guard(7 * 6) + // right bars3; // end guard codeWidth = Math.max(codeWidth, width); try { BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,BarcodeFormat.EAN_13, codeWidth, height, null); MatrixToImageWriter.writeToFile(bitMatrix, 'png', new File(imgPath)); } catch (Exception e) { e.printStackTrace(); } } /** * 條形碼解碼 * * @param imgPath * @return String */ public static String decode(String imgPath) { BufferedImage image = null; Result result = null; try { image = ImageIO.read(new File(imgPath)); if (image == null) {System.out.println('the decode image may be not exit.'); } LuminanceSource source = new BufferedImageLuminanceSource(image); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); result = new MultiFormatReader().decode(bitmap, null); return result.getText(); } catch (Exception e) { e.printStackTrace(); } return null; } /** * @param args */ public static void main(String[] args) { String imgPath = 'F:/zxing_EAN-13.png'; String contents = '6926557300360'; int width = 105, height = 50; encode(contents, width, height, imgPath); System.out.println('finished zxing EAN-13 encode.'); String decodeContent = decode(imgPath); System.out.println('解碼內(nèi)容如下:' + decodeContent); System.out.println('finished zxing EAN-13 decode.'); }}

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 并网柜,汇流箱,电控设备,中高低压开关柜,电气电力成套设备,PLC控制设备订制厂家,江苏昌伟业新能源科技有限公司 | 真石漆,山东真石漆,真石漆厂家,真石漆价格-山东新佳涂料有限公司 | 除尘器布袋骨架,除尘器滤袋,除尘器骨架,电磁脉冲阀膜片,卸灰阀,螺旋输送机-泊头市天润环保机械设备有限公司 | 西门子伺服控制器维修-伺服驱动放大器-828D数控机床维修-上海涌迪 | 伸缩节_伸缩器_传力接头_伸缩接头_巩义市联通管道厂 | 中医中药治疗血小板减少-石家庄血液病肿瘤门诊部 | 盘煤仪,盘料仪,盘点仪,堆料测量仪,便携式激光盘煤仪-中科航宇(北京)自动化工程技术有限公司 | 京港视通报道-质量走进大江南北-京港视通传媒[北京]有限公司 | 隧道窑炉,隧道窑炉厂家-山东艾瑶国际贸易 | uv固化机-丝印uv机-工业烤箱-五金蚀刻机-分拣输送机 - 保定市丰辉机械设备制造有限公司 | 新能源汽车教学设备厂家报价[汽车教学设备运营18年]-恒信教具 | 南京PVC快速门厂家南京快速卷帘门_南京pvc快速门_世界500强企业国内供应商_南京美高门业 | 水厂自动化-水厂控制系统-泵站自动化|控制系统-闸门自动化控制-济南华通中控科技有限公司 | 搪瓷搅拌器,搪玻璃搅拌器,搪玻璃冷凝器_厂家-淄博越宏化工设备 | Trimos测长机_测高仪_TESA_mahr,WYLER水平仪,PWB对刀仪-德瑞华测量技术(苏州)有限公司 | 粉末冶金注射成型厂家|MIM厂家|粉末冶金齿轮|MIM零件-深圳市新泰兴精密科技 | 锂电池砂磨机|石墨烯砂磨机|碳纳米管砂磨机-常州市奥能达机械设备有限公司 | 预制直埋蒸汽保温管-直埋管道-聚氨酯发泡保温管厂家 - 唐山市吉祥保温工贸有限公司 | 无压烧结银_有压烧结银_导电银胶_导电油墨_导电胶-善仁(浙江)新材料 | 无锡网站建设_小程序制作_网站设计公司_无锡网络公司_网站制作 | 济南宣传册设计-画册设计_济南莫都品牌设计公司 | 嘉兴泰东园林景观工程有限公司_花箱护栏| 课件导航网_ppt课件_课件模板_课件下载_最新课件资源分享发布平台 | 污泥烘干机-低温干化机-工业污泥烘干设备厂家-焦作市真节能环保设备科技有限公司 | 考勤系统_考勤管理系统_网络考勤软件_政企|集团|工厂复杂考勤工时统计排班管理系统_天时考勤 | 台式恒温摇床价格_大容量恒温摇床厂家-上海量壹科学仪器有限公司 | 优秀的临床医学知识库,临床知识库,医疗知识库,满足电子病历四级要求,免费试用 | 提升海外网站流量,增加国外网站访客UV,定制海外IP-访客王 | 铸铝门厂家,别墅大门庭院大门,别墅铸铝门铜门[十大品牌厂家]军强门业 | SDG吸附剂,SDG酸气吸附剂,干式酸性气体吸收剂生产厂家,超过20年生产使用经验。 - 富莱尔环保设备公司(原名天津市武清县环保设备厂) | 查分易-成绩发送平台官网 | 无缝钢管-聊城无缝钢管-小口径无缝钢管-大口径无缝钢管 - 聊城宽达钢管有限公司 | 柔软云母板-硬质-水位计云母片组件-首页-武汉长丰云母绝缘材料有限公司 | 高防护蠕动泵-多通道灌装系统-高防护蠕动泵-www.bjhuiyufluid.com慧宇伟业(北京)流体设备有限公司 | 济南网站建设|济南建网站|济南网站建设公司【济南腾飞网络】【荐】 | 手板-手板模型-手板厂-手板加工-生产厂家,[东莞创域模型] | 浙江美尔凯特智能厨卫股份有限公司 | 长沙一级消防工程公司_智能化弱电_机电安装_亮化工程专业施工承包_湖南公共安全工程有限公司 | 卫浴散热器,卫浴暖气片,卫生间背篓暖气片,华圣格浴室暖气片 | 日本SMC气缸接头-速度控制阀-日本三菱伺服电机-苏州禾力自动化科技有限公司 | 安规_综合测试仪,电器安全性能综合测试仪,低压母线槽安规综合测试仪-青岛合众电子有限公司 |