whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
src/main/java/com/whyc/util/AnalysisUtil.java
@@ -13,7 +13,6 @@
    public  static String excelOutPutPath="E:\\GitWorkSpace\\fg_v2.0\\target\\outPath";
    public  static String excelSourcePath="E:\\GitWorkSpace\\fg_v2.0\\target\\测试数据.xlsx";
    public static int precent=0;
    public static void analysisXlx(String excelSourcePath, String voltagePredictExePath, String excelOutPutPath){
        Process mProcess;
@@ -38,7 +37,6 @@
            while ((s = successResult.readLine()) != null) {
                if ((s.length() > 0) && !"\n".equals(s)) {
                    System.out.println(String.format("SuccessMsg:%s", s));
                    precent++;
                }
            }
            while ((s = errorResult.readLine()) != null) {
@@ -73,9 +71,6 @@
        }
    }
    public static int getPrecent(){
        return precent;
    }
    public static void main(String[] args) {
        analysisXlx(excelSourcePath,voltagePredictExePath,excelOutPutPath);