├── .gitignore ├── .gitmodules ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.MD ├── pic1.png └── pic2.png /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea 3 | javafxtests/ 4 | target/ 5 | out/ 6 | .iml 7 | *.class 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nengbowan/lotteryServer/461ae93acacc4942e191beec5c4a2f62ace46ba1/.gitmodules -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | 极彩源码(Java版本)正式封库,由于分享的代码都是极早的时候反编译的,所以运行过程中,不是很流畅,修复bug很是痛苦,所以历时几个月重新整理,现在已经完美运行.如果有需要的朋友,可以联系我的QQ:348239080. 2 | 提供现行截图两张: 3 | 4 | ![运行图](pic1.png "") 5 | 6 | 7 | ![运行图](pic2.png "") -------------------------------------------------------------------------------- /pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nengbowan/lotteryServer/461ae93acacc4942e191beec5c4a2f62ace46ba1/pic1.png -------------------------------------------------------------------------------- /pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nengbowan/lotteryServer/461ae93acacc4942e191beec5c4a2f62ace46ba1/pic2.png --------------------------------------------------------------------------------