摘要: public static void main(String[] args) throws IOException { List list = readXls(); for (ProProduct product : list){ ProProductClient.updateByProduct(product); } } private static List readXls() throws IOException { InputStream is = new FileInputStream("/Us... 阅读全文