diff --git a/client/build/built-jar.properties b/client/build/built-jar.properties index 3863201..27de08f 100644 --- a/client/build/built-jar.properties +++ b/client/build/built-jar.properties @@ -1,4 +1,4 @@ -#Sat, 13 Jan 2024 10:35:51 +0800 +#Sat, 13 Jan 2024 19:28:41 +0800 K\:\\OJ\\client= diff --git a/client/build/classes/client/util/Config.class b/client/build/classes/client/util/Config.class index 5d1a963..2d4253f 100644 Binary files a/client/build/classes/client/util/Config.class and b/client/build/classes/client/util/Config.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$1.class b/client/build/classes/client/view/frame/LoginFrame$1.class index 36923b9..0915e63 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$1.class and b/client/build/classes/client/view/frame/LoginFrame$1.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$2.class b/client/build/classes/client/view/frame/LoginFrame$2.class index 318879c..8d666ff 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$2.class and b/client/build/classes/client/view/frame/LoginFrame$2.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$3.class b/client/build/classes/client/view/frame/LoginFrame$3.class index 70baf05..eb04090 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$3.class and b/client/build/classes/client/view/frame/LoginFrame$3.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$4.class b/client/build/classes/client/view/frame/LoginFrame$4.class index 390a8bc..04b6998 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$4.class and b/client/build/classes/client/view/frame/LoginFrame$4.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$5.class b/client/build/classes/client/view/frame/LoginFrame$5.class index ec59fa6..790a033 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$5.class and b/client/build/classes/client/view/frame/LoginFrame$5.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$6.class b/client/build/classes/client/view/frame/LoginFrame$6.class index d9daad9..e0130c8 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$6.class and b/client/build/classes/client/view/frame/LoginFrame$6.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$7.class b/client/build/classes/client/view/frame/LoginFrame$7.class index b905e12..de19a55 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$7.class and b/client/build/classes/client/view/frame/LoginFrame$7.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame$8.class b/client/build/classes/client/view/frame/LoginFrame$8.class index e74ae5a..64852e0 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame$8.class and b/client/build/classes/client/view/frame/LoginFrame$8.class differ diff --git a/client/build/classes/client/view/frame/LoginFrame.class b/client/build/classes/client/view/frame/LoginFrame.class index 9aee178..074d0ab 100644 Binary files a/client/build/classes/client/view/frame/LoginFrame.class and b/client/build/classes/client/view/frame/LoginFrame.class differ diff --git a/client/config/Config.properties b/client/config/Config.properties index 76f4cd3..2d72e84 100644 --- a/client/config/Config.properties +++ b/client/config/Config.properties @@ -1,5 +1,5 @@ #update Config.properties -#Fri Jan 12 20:59:09 CST 2024 +#Sat Jan 13 19:28:55 CST 2024 isCppRelative=true isJavaRelative=true Username=felix @@ -8,7 +8,7 @@ URLip=106.15.36.190 relativeCCompilerDir=\\MinGW\\bin JavaRelative=-1 JavaCompileDir= -MinGWRelative=2 Debug=1 -URLport=80 +MinGWRelative=2 relativeCppCompilerDir=\\MinGW\\bin +URLport=80 diff --git a/client/log/exception/20240113.log b/client/log/exception/20240113.log new file mode 100644 index 0000000..77bb8bb --- /dev/null +++ b/client/log/exception/20240113.log @@ -0,0 +1,3 @@ +19:28:53 class java.io.FileNotFoundExceptionhttp://106.15.36.190:80/oj/SoftwareVersionMAction!DownLoad.action?versionId=null +19:28:53 class java.io.FileNotFoundExceptionhttp://106.15.36.190:80/oj/SoftwareVersionMAction!DownLoad.action?versionId=null +19:28:53 class java.io.FileNotFoundExceptionhttp://106.15.36.190:80/oj/SoftwareVersionMAction!DownLoad.action?versionId=null diff --git a/client/log/info/20240113.log b/client/log/info/20240113.log new file mode 100644 index 0000000..e69de29 diff --git a/client/src/client/util/Config.java b/client/src/client/util/Config.java index ded0d05..4fcf380 100644 --- a/client/src/client/util/Config.java +++ b/client/src/client/util/Config.java @@ -26,7 +26,7 @@ public class Config { public static final Properties prop= new Properties(); static{ try { - InputStream in = new FileInputStream(common.FileFinder.findFile("Config.properties")); + InputStream in = new FileInputStream(common.FileFinder.findFile("config/config.properties")); prop.load(in); in.close(); IPaddress = prop.getProperty("IPaddress"); @@ -62,7 +62,7 @@ public class Config { } public static void save(){ try { - FileOutputStream fos = new FileOutputStream(common.FileFinder.findFile("Config.properties")); + FileOutputStream fos = new FileOutputStream(common.FileFinder.findFile("config/config.properties")); prop.store(fos, "update Config.properties"); fos.close(); } catch (FileNotFoundException ex) { diff --git a/client/src/client/view/frame/LoginFrame.java b/client/src/client/view/frame/LoginFrame.java index 7f06c04..f989842 100644 --- a/client/src/client/view/frame/LoginFrame.java +++ b/client/src/client/view/frame/LoginFrame.java @@ -31,7 +31,6 @@ import java.util.List; import javax.xml.namespace.QName; import org.apache.cxf.endpoint.Client; import org.apache.cxf.service.factory.ServiceConstructionException; - /** * * @author ytxlo diff --git a/client/xml/1000000000/examlist.dat b/client/xml/1000000000/examlist.dat index 4e099cf..395c603 100644 Binary files a/client/xml/1000000000/examlist.dat and b/client/xml/1000000000/examlist.dat differ diff --git a/client/xml/1000000000/studentExamDetail_26.dat b/client/xml/1000000000/studentExamDetail_26.dat index 449325b..56748f7 100644 Binary files a/client/xml/1000000000/studentExamDetail_26.dat and b/client/xml/1000000000/studentExamDetail_26.dat differ diff --git a/clientUpdater/dist/lib/Common.jar b/clientUpdater/dist/lib/Common.jar index 593c9ff..44942a2 100644 Binary files a/clientUpdater/dist/lib/Common.jar and b/clientUpdater/dist/lib/Common.jar differ