Browse Source

adflow 求解

huangxingxing 5 months ago
parent
commit
576d525139
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/miniframe/tools/file/CRMFileRead.java

+ 2 - 2
src/main/java/com/miniframe/tools/file/CRMFileRead.java

@@ -51,10 +51,10 @@ public class CRMFileRead {
                     size =Integer.valueOf(line.split(" ")[0]);
                     continue;
                 }
-                if(i>=size){
+                if(i>size){
                     break;
                 }
-                if(i>con && i<size){
+                if(i>con && i<=size){
                     String[] vals = line.split(" ");
                     MdoProComval comval =new MdoProComval();
                     comval.setId(UtilTools.getUUid());