diff --git a/test1/.idea/.gitignore b/test1/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/test1/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/test1/.idea/misc.xml b/test1/.idea/misc.xml new file mode 100644 index 0000000..0548357 --- /dev/null +++ b/test1/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/test1/.idea/modules.xml b/test1/.idea/modules.xml new file mode 100644 index 0000000..eb5a4da --- /dev/null +++ b/test1/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/test1/out/production/test1/Main.class b/test1/out/production/test1/Main.class new file mode 100644 index 0000000..fae1245 Binary files /dev/null and b/test1/out/production/test1/Main.class differ diff --git a/test1/out/production/test1/page/openpage.class b/test1/out/production/test1/page/openpage.class new file mode 100644 index 0000000..7d1b54c Binary files /dev/null and b/test1/out/production/test1/page/openpage.class differ diff --git a/test1/src/main/main.java b/test1/src/main/main.java new file mode 100644 index 0000000..5304783 --- /dev/null +++ b/test1/src/main/main.java @@ -0,0 +1,4 @@ +package main; + +public class main { +} diff --git a/test1/src/page/openpage.java b/test1/src/page/openpage.java new file mode 100644 index 0000000..643d5b5 --- /dev/null +++ b/test1/src/page/openpage.java @@ -0,0 +1,12 @@ +package page; +import javax.swing.*; +public class openpage { + public static void main(String[] args){ + JFrame jFrame = new JFrame("测试"); + jFrame.setSize(500,500); + jFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); + jFrame.setResizable(false); + jFrame.setLocationRelativeTo(null); + jFrame.setVisible(true); + } +} diff --git a/test1/test1.iml b/test1/test1.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/test1/test1.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file