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

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

Apache POI操作批量導(dǎo)入MySQL數(shù)據(jù)庫

瀏覽:181日期:2023-03-07 14:40:29
目錄
  • 1、POI操作入門案例
    • 1.1、從Excel文件讀取數(shù)據(jù)1
    • 1.2、從Excel文件讀取數(shù)據(jù)2
    • 1.3、向Excel文件寫入數(shù)據(jù)
  • 2、使用POI批量導(dǎo)入數(shù)據(jù)到MySQL數(shù)據(jù)庫
    • 2.1、創(chuàng)建導(dǎo)入數(shù)據(jù)的Excel模板文件
    • 2.2、批量上傳文件的后端代碼編寫
  • 3、批量導(dǎo)入數(shù)據(jù)測(cè)試

    poi介紹:

    Apache POI是用Java編寫的免費(fèi)開源的跨平臺(tái)的Java API,Apache POI提供API給Java程序?qū)icrosoft Office格式檔案讀和寫的功能,其中使用最多的就是使用POI操作Excel文件。

    POI使用到的相關(guān)maven依賴坐標(biāo)如下:

    <dependency>  <groupId>org.apache.poi</groupId>  <artifactId>poi</artifactId>  <version>3.14</version></dependency><dependency>  <groupId>org.apache.poi</groupId>  <artifactId>poi-ooxml</artifactId>  <version>3.14</version></dependency>

    POI的相關(guān)操作結(jié)果

    HSSF - 提供讀寫Microsoft Excel XLS格式檔案的功能XSSF - 提供讀寫Microsoft Excel OOXML XLSX格式檔案的功能HWPF - 提供讀寫Microsoft Word DOC格式檔案的功能HSLF - 提供讀寫Microsoft PowerPoint格式檔案的功能HDGF - 提供讀Microsoft Visio格式檔案的功能HPBF - 提供讀Microsoft Publisher格式檔案的功能HSMF - 提供讀Microsoft Outlook格式檔案的功能

    1、POI操作入門案例

    1.1、從Excel文件讀取數(shù)據(jù)1

    使用POI可以從一個(gè)已經(jīng)存在的Excel文件中讀取數(shù)據(jù)

    前提需要建立一個(gè)需要讀取的表格數(shù)據(jù)進(jìn)行讀取

    /** * 使用poi讀取表格數(shù)據(jù) * @throws Exception */@Testpublic void test1() throws Exception {    // 1、加載指定的文件進(jìn)行讀取    XSSFWorkbook excel = new XSSFWorkbook(new FileInputStream("C:\\Users\\zhong\\Desktop\\poi.xlsx"));    // 2、讀取表格中的Sheet頁,通過索引決定    XSSFSheet sheetAt = excel.getSheetAt(0);    // 3、讀取Sheet頁中的行數(shù)據(jù)    for (Row row : sheetAt) {// 4、讀取每一行數(shù)據(jù)的單元格數(shù)據(jù)(如果涉及到類型裝轉(zhuǎn)換的可能出現(xiàn)報(bào)錯(cuò)消息,后期通過代碼進(jìn)行判斷即可)for (Cell cell : row) {    System.out.print(cell+"   ");}System.out.println();    }    // 5、關(guān)閉讀取文件的流    excel.close();}

    輸出結(jié)果如下:

    姓名 省份 城市
    張三 廣東 高州
    李四 四川 成都

    POI操作Excel表格封裝了幾個(gè)核心對(duì)象:

    XSSFWorkbook:工作簿
    XSSFSheet:工作表
    Row:行
    Cell:?jiǎn)卧?/p>

    1.2、從Excel文件讀取數(shù)據(jù)2

    還有一種方式就是獲取工作表最后一個(gè)行號(hào),從而根據(jù)行號(hào)獲得行對(duì)象,通過行獲取最后一個(gè)單元格索引,從而根據(jù)單元格索引獲取每行的一個(gè)單元格對(duì)象,代碼如下:

    /** * 使用poi讀取文件的第二種方式 * @throws Exception */@Testpublic void test2() throws Exception {    // 1、加載指定的文件進(jìn)行讀取    XSSFWorkbook excel = new XSSFWorkbook(new FileInputStream("C:\\Users\\zhong\\Desktop\\poi.xlsx"));    // 2、讀取表格中的Sheet頁,通過索引決定    XSSFSheet sheetAt = excel.getSheetAt(0);    // 3、獲取當(dāng)前工作表中最后一個(gè)行號(hào),注意行號(hào)是從0開啟的    int lastRowNum = sheetAt.getLastRowNum();    // 4、遍歷獲取到的行號(hào)    for (int i = 0; i <= lastRowNum; i++) {// 5、根據(jù)行號(hào)獲取到每一行的數(shù)據(jù)XSSFRow row = sheetAt.getRow(i);// 6、獲取到當(dāng)前最后一個(gè)單元格索引short lastCellNum = row.getLastCellNum();// 7、遍歷當(dāng)前的單元格獲取到具體的數(shù)據(jù)for (int j = 0; j < lastCellNum; j++) {    // 獲取到單元格的對(duì)象    XSSFCell cell = row.getCell(j);    // 輸出獲取到的數(shù)據(jù)    System.out.print(cell + "   ");}System.out.println();    }    // 8、釋放資源    excel.close();}

    1.3、向Excel文件寫入數(shù)據(jù)

    使用POI可以在內(nèi)存中創(chuàng)建一個(gè)Excel文件并將數(shù)據(jù)寫入到這個(gè)文件,最后通過輸出流將內(nèi)存中的Excel文件下載到磁盤

    /** * poi寫出數(shù)據(jù)到磁盤 */@Testpublic void test3() throws Exception {    // 1、創(chuàng)建工作簿    XSSFWorkbook excel = new XSSFWorkbook();    // 2、創(chuàng)建工作簿中的表對(duì)象    XSSFSheet sheet = excel.createSheet("創(chuàng)建表");    // 3、創(chuàng)建第一行(表頭)    XSSFRow row1 = sheet.createRow(0);    // 4、在行中創(chuàng)建單元格數(shù)據(jù)    row1.createCell(0).setCellValue("姓名");    row1.createCell(1).setCellValue("省份");    row1.createCell(2).setCellValue("城市");    row1.createCell(3).setCellValue("年齡");    // 5、創(chuàng)建第二行    XSSFRow row2 = sheet.createRow(1);    // 6、創(chuàng)建第6行的數(shù)據(jù)    row2.createCell(0).setCellValue("張三");    row2.createCell(1).setCellValue("遼寧");    row2.createCell(2).setCellValue("上海");    row2.createCell(3).setCellValue("50");    // 7、創(chuàng)建一個(gè)字節(jié)輸出流,將數(shù)據(jù)保存到本地    FileOutputStream fileOutputStream = new FileOutputStream(new File("C:\\Users\\zhong\\Desktop\\aaa.xlsx"));    excel.write(fileOutputStream);    fileOutputStream.flush();    // 8、關(guān)閉輸出    excel.close();    System.out.println("數(shù)據(jù)導(dǎo)出成功");}

    2、使用POI批量導(dǎo)入數(shù)據(jù)到MySQL數(shù)據(jù)庫

    創(chuàng)建一個(gè)數(shù)據(jù)庫的表t_ordersetting

    -- auto-generated definitioncreate table t_ordersetting(    id   int auto_incrementprimary key,    orderDate    date null comment "約預(yù)日期",    number       int  null comment "可預(yù)約人數(shù)",    reservations int  null comment "已預(yù)約人數(shù)")    charset = utf8;

    批量導(dǎo)入預(yù)約設(shè)置信息操作過程:

    1、點(diǎn)擊模板下載按鈕下載Excel模板文件

    2、將預(yù)約設(shè)置信息錄入到模板文件中

    3、點(diǎn)擊上傳文件按鈕將錄入完信息的模板文件上傳到服務(wù)器

    4、通過POI讀取上傳文件的數(shù)據(jù)并保存到數(shù)據(jù)庫

    創(chuàng)建對(duì)應(yīng)的實(shí)體類

    public class OrderSetting implements Serializable{    private Integer id ;    private Date orderDate;//預(yù)約設(shè)置日期    private int number;//可預(yù)約人數(shù)    private int reservations ;//已預(yù)約人數(shù)    public OrderSetting() {    }    public OrderSetting(Date orderDate, int number) {this.orderDate = orderDate;this.number = number;    }}

    2.1、創(chuàng)建導(dǎo)入數(shù)據(jù)的Excel模板文件

    目的是為了統(tǒng)一管理導(dǎo)入的數(shù)據(jù)格式

    修改頁面提供一個(gè)下載批量導(dǎo)入數(shù)據(jù)的模板按鈕

    //下載模板文件downloadTemplate(){    window.location.href="../../template/ordersetting_template.xlsx" rel="external nofollow" ;}

    文件上傳前端代碼實(shí)現(xiàn)

    <el-upload action="/ordersetting/upload.do"   name="excelFile"   :show-file-list="false"   :on-success="handleSuccess"   :before-upload="beforeUpload">    <el-button type="primary">上傳文件</el-button></el-upload>

    提交函數(shù)

    // 上傳之前進(jìn)行文件格式校驗(yàn)beforeUpload(file){    const isXLS = file.type === "application/vnd.ms-excel";    if(isXLS){return true;    }    const isXLSX = file.type === "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";    if (isXLSX) {return true;    }    this.$message.error("上傳文件只能是xls或者xlsx格式!");    return false;},// 上傳成功提示handleSuccess(response, file) {    if(response.flag){this.$message({    message: response.message,    type: "success"});    }else{this.$message.error(response.message);    }    console.log(response, file, fileList);},

    2.2、批量上傳文件的后端代碼編寫

    關(guān)于上傳文件一般網(wǎng)上都會(huì)有很多的工具類可以下載使用,也就是別人將已經(jīng)封裝好的代碼拿出來分享給大家使用的

    package com.zcl.utils;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.List;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import org.apache.poi.ss.usermodel.Cell;import org.apache.poi.ss.usermodel.Row;import org.apache.poi.ss.usermodel.Sheet;import org.apache.poi.ss.usermodel.Workbook;import org.apache.poi.xssf.usermodel.XSSFWorkbook;import org.springframework.web.multipart.MultipartFile;public class POIUtils {    private final static String xls = "xls";    private final static String xlsx = "xlsx";    private final static String DATE_FORMAT = "yyyy/MM/dd";    /**     * 讀入excel文件,解析后返回     * @param file     * @throws IOException     */    public static List<String[]> readExcel(MultipartFile file) throws IOException {//檢查文件checkFile(file);//獲得Workbook工作薄對(duì)象Workbook workbook = getWorkBook(file);//創(chuàng)建返回對(duì)象,把每行中的值作為一個(gè)數(shù)組,所有行作為一個(gè)集合返回List<String[]> list = new ArrayList<String[]>();if(workbook != null){    for(int sheetNum = 0;sheetNum < workbook.getNumberOfSheets();sheetNum++){//獲得當(dāng)前sheet工作表Sheet sheet = workbook.getSheetAt(sheetNum);if(sheet == null){    continue;}//獲得當(dāng)前sheet的開始行int firstRowNum  = sheet.getFirstRowNum();//獲得當(dāng)前sheet的結(jié)束行int lastRowNum = sheet.getLastRowNum();//循環(huán)除了第一行的所有行for(int rowNum = firstRowNum+1;rowNum <= lastRowNum;rowNum++){    //獲得當(dāng)前行    Row row = sheet.getRow(rowNum);    if(row == null){continue;    }    //獲得當(dāng)前行的開始列    int firstCellNum = row.getFirstCellNum();    //獲得當(dāng)前行的列數(shù)    int lastCellNum = row.getPhysicalNumberOfCells();    String[] cells = new String[row.getPhysicalNumberOfCells()];    //循環(huán)當(dāng)前行    for(int cellNum = firstCellNum; cellNum < lastCellNum;cellNum++){Cell cell = row.getCell(cellNum);cells[cellNum] = getCellValue(cell);    }    list.add(cells);}    }    workbook.close();}return list;    }    //校驗(yàn)文件是否合法    public static void checkFile(MultipartFile file) throws IOException{//判斷文件是否存在if(null == file){    throw new FileNotFoundException("文件不存在!");}//獲得文件名String fileName = file.getOriginalFilename();//判斷文件是否是excel文件if(!fileName.endsWith(xls) && !fileName.endsWith(xlsx)){    throw new IOException(fileName + "不是excel文件");}    }    public static Workbook getWorkBook(MultipartFile file) {//獲得文件名String fileName = file.getOriginalFilename();//創(chuàng)建Workbook工作薄對(duì)象,表示整個(gè)excelWorkbook workbook = null;try {    //獲取excel文件的io流    InputStream is = file.getInputStream();    //根據(jù)文件后綴名不同(xls和xlsx)獲得不同的Workbook實(shí)現(xiàn)類對(duì)象    if(fileName.endsWith(xls)){//2003workbook = new HSSFWorkbook(is);    }else if(fileName.endsWith(xlsx)){//2007workbook = new XSSFWorkbook(is);    }} catch (IOException e) {    e.printStackTrace();}return workbook;    }    public static String getCellValue(Cell cell){String cellValue = "";if(cell == null){    return cellValue;}//如果當(dāng)前單元格內(nèi)容為日期類型,需要特殊處理String dataFormatString = cell.getCellStyle().getDataFormatString();if(dataFormatString.equals("m/d/yy")){    cellValue = new SimpleDateFormat(DATE_FORMAT).format(cell.getDateCellValue());    return cellValue;}//把數(shù)字當(dāng)成String來讀,避免出現(xiàn)1讀成1.0的情況if(cell.getCellType() == Cell.CELL_TYPE_NUMERIC){    cell.setCellType(Cell.CELL_TYPE_STRING);}//判斷數(shù)據(jù)的類型switch (cell.getCellType()){    case Cell.CELL_TYPE_NUMERIC: //數(shù)字cellValue = String.valueOf(cell.getNumericCellValue());break;    case Cell.CELL_TYPE_STRING: //字符串cellValue = String.valueOf(cell.getStringCellValue());break;    case Cell.CELL_TYPE_BOOLEAN: //BooleancellValue = String.valueOf(cell.getBooleanCellValue());break;    case Cell.CELL_TYPE_FORMULA: //公式cellValue = String.valueOf(cell.getCellFormula());break;    case Cell.CELL_TYPE_BLANK: //空值cellValue = "";break;    case Cell.CELL_TYPE_ERROR: //故障cellValue = "非法字符";break;    default:cellValue = "未知類型";break;}return cellValue;    }}

    2.2.1、創(chuàng)建批量上傳控制器

    這里使用的dubbo遠(yuǎn)程調(diào)用了接口方法

    /** * 項(xiàng)目名稱:health_parent * 描述:預(yù)約管理控制器 * * @author zhong * @date 2022-06-18 14:50 */@RestController@RequestMapping("/ordersetting")public class OrderSettingController {    /**     * 遠(yuǎn)程調(diào)用預(yù)約管理的服務(wù)接口     */    @Reference    private OrderSettingService orderSettingService;    /**     * 文件上傳,實(shí)現(xiàn)預(yù)約管理的批量導(dǎo)入     * @param excelFile     * @return     */    @RequestMapping("/upload")    public Result upload(@RequestParam("excelFile") MultipartFile excelFile){try {    // 1、使用工具類解析上傳的數(shù)據(jù)    List<String[]> list = POIUtils.readExcel(excelFile);    // 將讀取的表格數(shù)據(jù)轉(zhuǎn)換為表格預(yù)約對(duì)象數(shù)據(jù)    List<OrderSetting> data = new ArrayList<>();    // 2、處理解析的數(shù)據(jù)    for (String[] strings : list) {// 獲取到導(dǎo)入數(shù)據(jù)行的第一個(gè)單元格(預(yù)約時(shí)間)String orderSate = strings[0];// 獲取到導(dǎo)入數(shù)據(jù)行的第二個(gè)單元格(預(yù)約姓名)String number = strings[1];// 將重新獲取到的數(shù)據(jù)添加到預(yù)約集合中OrderSetting orderSetting = new OrderSetting(new Date(orderSate), Integer.parseInt(number));data.add(orderSetting);    }    // 2、通過dubbo遠(yuǎn)程調(diào)用服務(wù)實(shí)現(xiàn)數(shù)據(jù)批量導(dǎo)入到數(shù)據(jù)庫    orderSettingService.add(data);} catch (IOException e) {    e.printStackTrace();    return new Result(false, MessageConstant.IMPORT_ORDERSETTING_FAIL);}return new Result(true, MessageConstant.IMPORT_ORDERSETTING_SUCCESS);    }}

    2.2.2、創(chuàng)建批量上傳的接口實(shí)現(xiàn)類

    package com.zcl.service.impl;import com.alibaba.dubbo.config.annotation.Service;import com.itheima.pojo.OrderSetting;import com.zcl.dao.OrderSettingDao;import com.zcl.service.OrderSettingService;import org.springframework.transaction.annotation.Transactional;import java.util.List;/** * 項(xiàng)目名稱:health_parent * 描述:預(yù)約管理接口實(shí)現(xiàn)類 * * @author zhong * @date 2022-06-18 15:09 */@Service(interfaceClass = OrderSettingService.class)@Transactionalpublic class OrderSettingImpl implements OrderSettingService {    /**     * 注入保存數(shù)據(jù)     */    @Autowired    private OrderSettingDao orderSettingDao;    /**     * 批量上傳業(yè)務(wù)實(shí)現(xiàn)     * @param data     */    @Override    public void add(List<OrderSetting> data) {// 判斷集合數(shù)據(jù)是否為空if(data != null && data.size() > 0){    // 判斷當(dāng)前日期是否已經(jīng)進(jìn)行了預(yù)約設(shè)置    for (OrderSetting datum : data) {// 根據(jù)日期查詢預(yù)約消息long count = orderSettingDao.findCountByOrderDate(datum.getOrderDate());if(count > 0){    // 已進(jìn)行預(yù)約管理,執(zhí)行更新操作    orderSettingDao.editNumberByOrderDate(datum);}else{    // 添加預(yù)約設(shè)置    orderSettingDao.add(datum);}    }}else{}    }}

    2.2.3、創(chuàng)建數(shù)據(jù)訪問層接口和映射文件

    package com.zcl.dao;import com.itheima.pojo.OrderSetting;import java.util.Date;/** * 項(xiàng)目名稱:health_parent * 描述:預(yù)約管理數(shù)據(jù)訪問層 * * @author zhong * @date 2022-06-18 15:13 */public interface OrderSettingDao {    /**     * 添加預(yù)約數(shù)據(jù)     * @param orderSetting     */    void add(OrderSetting orderSetting);    /**     * 修改預(yù)約數(shù)據(jù)     * @param orderSetting     */    void editNumberByOrderDate(OrderSetting orderSetting);    /**     * 查詢預(yù)約數(shù)據(jù)的總數(shù)     * @param orderDate     * @return     */    long findCountByOrderDate(Date orderDate);}

    數(shù)據(jù)訪問層映射文件編寫SQL語句

    <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.zcl.dao.OrderSettingDao">    <!--添加預(yù)約嘻嘻嘻-->    <insert id="add" parameterType="com.itheima.pojo.OrderSetting">insert into t_ordersetting (orderDate,number,reservations)values (#{orderDate},#{number},#{reservations});    </insert>    <!--根據(jù)日期修改預(yù)約信息-->    <update id="editNumberByOrderDate" parameterType="com.itheima.pojo.OrderSetting">update t_ordersettingset number = #{number}where orderDate = #{orderDate}    </update>    <!--根據(jù)日期查詢數(shù)據(jù)-->    <select id="findCountByOrderDate" parameterType="date" resultType="java.lang.Long">select count(id)from t_ordersettingwhere orderDate = #{orderDate}    </select></mapper>

    3、批量導(dǎo)入數(shù)據(jù)測(cè)試

    在上傳模板上制作數(shù)據(jù),然后進(jìn)行導(dǎo)入,先導(dǎo)入新的數(shù)據(jù)再導(dǎo)入修改后日期不變的數(shù)據(jù)再次上傳數(shù)據(jù)

    到此這篇關(guān)于Apache POI操作批量導(dǎo)入MySQL數(shù)據(jù)庫的文章就介紹到這了,更多相關(guān)Apache POI操作批量導(dǎo)入MySQL內(nèi)容請(qǐng)搜索以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持!

    標(biāo)簽: Linux Apache
    主站蜘蛛池模板: 压片机_高速_单冲_双层_花篮式_多功能旋转压片机-上海天九压片机厂家 | 箱式破碎机_移动方箱式破碎机/价格/厂家_【华盛铭重工】 | 作文导航网_作文之家_满分作文_优秀作文_作文大全_作文素材_最新作文分享发布平台 | 车间除尘设备,VOCs废气处理,工业涂装流水线,伸缩式喷漆房,自动喷砂房,沸石转轮浓缩吸附,机器人喷粉线-山东创杰智慧 | 粉末包装机,拆包机厂家,价格-上海强牛包装机械设备有限公司 | 深圳宣传片制作_产品视频制作_深圳3D动画制作公司_深圳短视频拍摄-深圳市西典映画传媒有限公司 | 花纹铝板,合金铝卷板,阴极铝板-济南恒诚铝业有限公司 | 山东PE给水管厂家,山东双壁波纹管,山东钢带增强波纹管,山东PE穿线管,山东PE农田灌溉管,山东MPP电力保护套管-山东德诺塑业有限公司 | 纯水电导率测定仪-万用气体检测仪-低钠测定仪-米沃奇科技(北京)有限公司www.milwaukeeinst.cn 锂辉石检测仪器,水泥成分快速分析仪-湘潭宇科分析仪器有限公司 手术室净化装修-手术室净化工程公司-华锐手术室净化厂家 | 超声波破碎仪-均质乳化机(供应杭州,上海,北京,广州,深圳,成都等地)-上海沪析实业有限公司 | 不锈钢监控杆_监控立杆厂家-廊坊耀星光电科技有限公司 | 粉末冶金注射成型厂家|MIM厂家|粉末冶金齿轮|MIM零件-深圳市新泰兴精密科技 | 点焊机-缝焊机-闪光对焊机-电阻焊设备生产厂家-上海骏腾发智能设备有限公司 | 辐射仪|辐射检测仪|辐射巡测仪|个人剂量报警仪|表面污染检测仪|辐射报警仪|辐射防护网 | 空气弹簧|橡胶气囊|橡胶空气弹簧-上海松夏减震器有限公司 | 电缆故障测试仪_电缆故障定位仪_探测仪_检测仪器_陕西意联电气厂家 | 网站seo优化_seo云优化_搜索引擎seo_启新网络服务中心 | 阜阳成人高考_阜阳成考报名时间_安徽省成人高考网 | 本安接线盒-本安电路用接线盒-本安分线盒-矿用电话接线盒-JHH生产厂家-宁波龙亿电子科技有限公司 | 杭州货架订做_组合货架公司_货位式货架_贯通式_重型仓储_工厂货架_货架销售厂家_杭州永诚货架有限公司 | 高低温万能试验机_拉力试验机_拉伸试验机-馥勒仪器科技(上海)有限公司 | 多功能真空滤油机_润滑油全自动滤油机_高效真空滤油机价格-重庆润华通驰 | 槽钢冲孔机,槽钢三面冲,带钢冲孔机-山东兴田阳光智能装备股份有限公司 | 盐城网络公司_盐城网站优化_盐城网站建设_盐城市启晨网络科技有限公司 | 合肥活动房_安徽活动板房_集成打包箱房厂家-安徽玉强钢结构集成房屋有限公司 | 干粉砂浆设备-干粉砂浆生产线-干混-石膏-保温砂浆设备生产线-腻子粉设备厂家-国恒机械 | 光伏支架成型设备-光伏钢边框设备-光伏设备厂家 | 智慧物联网行业一站式解决方案提供商-北京东成基业 | 深圳律师咨询_深圳律师事务所_华荣【免费在线法律咨询】网 | 健康管理师报考条件,考试时间,报名入口—首页 | 贴板式电磁阀-不锈钢-气动上展式放料阀-上海弗雷西阀门有限公司 工业机械三维动画制作 环保设备原理三维演示动画 自动化装配产线三维动画制作公司-南京燃动数字 | 亮化工程,亮化设计,城市亮化工程,亮化资质合作,长沙亮化照明,杰奥思【官网】 | 考试试题_试卷及答案_诗词单词成语 - 优易学 | 进口便携式天平,外校_十万分之一分析天平,奥豪斯工业台秤,V2000防水秤-重庆珂偌德科技有限公司(www.crdkj.com) | 首页_欧瑞传动官方网站--主营变频器、伺服系统、新能源、软起动器、PLC、HMI | H型钢切割机,相贯线切割机,数控钻床,数控平面钻,钢结构设备,槽钢切割机,角钢切割机,翻转机,拼焊矫一体机 | 原子吸收设备-国产分光光度计-光谱分光光度计-上海光谱仪器有限公司 | 硬齿面减速机_厂家-山东安吉富传动设备股份有限公司 | 搅拌磨|搅拌球磨机|循环磨|循环球磨机-无锡市少宏粉体科技有限公司 | 新能源汽车教学设备厂家报价[汽车教学设备运营18年]-恒信教具 | 过滤器_自清洗过滤器_气体过滤器_苏州华凯过滤技术有限公司 |