From b4f25e99b1cfc84ef1db0830f4573f107377fa2f Mon Sep 17 00:00:00 2001
From: LHY0125 <3364451258@qq.com>
Date: Sun, 8 Feb 2026 23:58:00 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=B9=8BGitHub?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitattributes | 1 +
.gitignore | 26 +
LICENSE | 674 ++++++++++++
README.en.md | 122 +++
README.md | 135 +++
dist/LocalChat.ico | Bin 0 -> 75216 bytes
dist/setup.iss | 55 +
pom.xml | 169 +++
src/client/Client.java | 119 +++
src/client/service/ChatReceiver.java | 480 +++++++++
src/client/service/ChatSender.java | 80 ++
src/client/service/LocalData.java | 155 +++
src/client/view/LoginPage.java | 115 ++
src/client/view/MainPage.java | 503 +++++++++
src/client/view/login/SignInView.java | 102 ++
src/client/view/login/SignUpView.java | 120 +++
src/client/view/main/ChatInfoView.java | 530 ++++++++++
src/client/view/main/ContentView.java | 84 ++
src/client/view/main/FriendListItem.java | 95 ++
src/client/view/main/FriendProfileView.java | 127 +++
src/client/view/main/GroupInfoView.java | 366 +++++++
src/client/view/main/GroupListItem.java | 214 ++++
src/client/view/main/SecondaryOptionView.java | 347 ++++++
src/client/view/main/SettingsView.java | 198 ++++
src/client/view/main/SideOptionView.java | 177 ++++
src/client/view/util/CircleCharIcon2.java | 50 +
src/client/view/util/DesignToken.java | 97 ++
src/client/view/util/LimitSizePanel.java | 32 +
src/client/view/util/RoundedRectCharIcon.java | 81 ++
src/global/global.java | 103 ++
src/server/Server.java | 64 ++
src/server/ServerMainThread.java | 224 ++++
src/server/data/GroupData.java | 106 ++
src/server/data/ServerData.java | 294 ++++++
src/server/data/UserData.java | 158 +++
src/server/serveice/ClientChatThread.java | 993 ++++++++++++++++++
src/server/serveice/ClientReceiveThread.java | 80 ++
src/server/serveice/Wrapper.java | 210 ++++
src/test/MainTest.java | 104 ++
src/util/DataObj.java | 32 +
src/util/FileUtil.java | 219 ++++
src/util/MsgUtil.java | 47 +
启动方法.md | 38 +
43 files changed, 7926 insertions(+)
create mode 100644 .gitattributes
create mode 100644 .gitignore
create mode 100644 LICENSE
create mode 100644 README.en.md
create mode 100644 README.md
create mode 100644 dist/LocalChat.ico
create mode 100644 dist/setup.iss
create mode 100644 pom.xml
create mode 100644 src/client/Client.java
create mode 100644 src/client/service/ChatReceiver.java
create mode 100644 src/client/service/ChatSender.java
create mode 100644 src/client/service/LocalData.java
create mode 100644 src/client/view/LoginPage.java
create mode 100644 src/client/view/MainPage.java
create mode 100644 src/client/view/login/SignInView.java
create mode 100644 src/client/view/login/SignUpView.java
create mode 100644 src/client/view/main/ChatInfoView.java
create mode 100644 src/client/view/main/ContentView.java
create mode 100644 src/client/view/main/FriendListItem.java
create mode 100644 src/client/view/main/FriendProfileView.java
create mode 100644 src/client/view/main/GroupInfoView.java
create mode 100644 src/client/view/main/GroupListItem.java
create mode 100644 src/client/view/main/SecondaryOptionView.java
create mode 100644 src/client/view/main/SettingsView.java
create mode 100644 src/client/view/main/SideOptionView.java
create mode 100644 src/client/view/util/CircleCharIcon2.java
create mode 100644 src/client/view/util/DesignToken.java
create mode 100644 src/client/view/util/LimitSizePanel.java
create mode 100644 src/client/view/util/RoundedRectCharIcon.java
create mode 100644 src/global/global.java
create mode 100644 src/server/Server.java
create mode 100644 src/server/ServerMainThread.java
create mode 100644 src/server/data/GroupData.java
create mode 100644 src/server/data/ServerData.java
create mode 100644 src/server/data/UserData.java
create mode 100644 src/server/serveice/ClientChatThread.java
create mode 100644 src/server/serveice/ClientReceiveThread.java
create mode 100644 src/server/serveice/Wrapper.java
create mode 100644 src/test/MainTest.java
create mode 100644 src/util/DataObj.java
create mode 100644 src/util/FileUtil.java
create mode 100644 src/util/MsgUtil.java
create mode 100644 启动方法.md
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..2125666
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3333262
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,26 @@
+### Example user template template
+### Example user template
+
+# IntelliJ project files
+.idea
+*.iml
+out
+gen
+/.vscode/
+/data/
+/dist/LocalChatClient/
+/dist/LocalChatServer/
+/dist/Output/
+/lib/
+
+target/
+pom.xml.tag
+pom.xml.releaseBackup
+pom.xml.versionsBackup
+pom.xml.next
+release.properties
+dependency-reduced-pom.xml
+buildNumber.properties
+.mvn/timing.properties
+# https://github.com/takari/maven-wrapper#usage-without-binary-jar
+.mvn/wrapper/maven-wrapper.jar
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/README.en.md b/README.en.md
new file mode 100644
index 0000000..e29a32a
--- /dev/null
+++ b/README.en.md
@@ -0,0 +1,122 @@
+# LocalChatApp
+
+The second small project of the "Brick and Tile" team: A local LAN chat application based on Java Swing and Socket.
+
+## Introduction
+
+This project is a C/S architecture instant messaging software that supports user registration, login, group chat, group management, and other functions.
+The project is developed in Java, using Swing as the GUI framework, and the underlying layer communicates in full duplex via TCP Socket.
+
+## Software Architecture
+
+The project is mainly divided into three core packages: `client`, `server`, and `global`/`util` (common components).
+
+### Directory Structure
+
+- **Client**
+ - Entry file: [`src/client/Client.java`](src/client/Client.java)
+ - Business Logic: [`src/client/service/`](src/client/service/)
+ - `ChatReceiver.java`: Responsible for receiving server messages and driving UI updates
+ - `ChatSender.java`: Responsible for sending messages to the server
+ - `LocalData.java`: Client local data cache
+ - Interface Display: [`src/client/view/`](src/client/view/)
+ - `LoginPage.java`: Login/Registration main container
+ - `MainPage.java`: Chat main interface container
+ - `login/`: Specific view components for login and registration
+ - `main/`: Specific view components such as chat windows and group lists
+
+- **Server**
+ - Entry file: [`src/server/Server.java`](src/server/Server.java)
+ - Business Service: [`src/server/serveice/`](src/server/serveice/)
+ - `ClientChatThread.java`: Connection thread handling a single client
+ - `Wrapper.java`: Communication protocol data packet definition
+ - Data Model: [`src/server/data/`](src/server/data/)
+
+- **Common Components**
+ - Global Constants: [`src/global/global.java`](src/global/global.java)
+ - Utilities: [`src/util/`](src/util/)
+ - `MsgUtil.java`: Message processing utility
+ - `SocketUtil.java`: Socket related utility
+ - `FileUtil.java`: File operation utility
+
+## Core Features
+
+1. **User System**
+ - Login and Registration
+ - Personal Information Maintenance
+2. **Instant Messaging**
+ - Real-time Group Chat
+ - Message Receiving and Sending
+3. **Group Management**
+ - Group List Display
+ - Group Information Update and Maintenance
+
+## UI Component Introduction
+
+This project adopts a design pattern of dynamically replacing UI components. For example, on the login interface, when the user clicks the "Register" button, the login panel (SignIn) will be replaced by the registration panel (SignUp).
+
+- **Login Page (`LoginPage`)**
+ - Contains `SignInView`: Login form component
+ - Contains `SignUpView`: Registration form component
+ - *Replacement Logic*: Implement panel switching through `CardLayout` or removing/adding components.
+
+- **Main Interface (`MainPage`)**
+ - **Left Navigation (`SideOptionView`)**: Function menu and group list
+ - **Middle Content (`ContentView`)**: Chat window and message display
+ - **Secondary Options (`SecondaryOptionView`)**: Auxiliary function entry. *(Update: Added clear top and bottom dividers to the top title bar to enhance the visual hierarchy with the chat list and window title)*
+
+- **UI Toolkit (`util`)**
+ - Contains custom UI elements (such as `BlueOutlineWhiteBtn`, `CircleCharIcon2`)
+ - `DesignToken`: Uniformly defines design specifications such as colors and fonts to ensure UI style consistency.
+
+## Project Packaging
+
+This project supports generating independent client installation packages.
+
+1. **Compile and Package**:
+ Use Maven to compile. `pom.xml` is configured with `maven-resources-plugin` to automatically copy dependencies to `target/lib`.
+ ```bash
+ mvn clean package
+ ```
+
+2. **Generate Client Image**:
+ Use `jpackage` to generate an independent client containing JRE.
+ ```bash
+ jpackage --type app-image --input target --main-jar LocalChatRoom-1.0-SNAPSHOT.jar --main-class client.Client --dest dist --name LocalChatClient --java-options "-Dfile.encoding=UTF-8"
+ ```
+
+3. **Generate Installer**:
+ Use Inno Setup to compile the `dist/setup.iss` script, finally generating `dist/Output/LocalChatApp_Setup.exe`.
+
+## Extended Features
+
+This project reserves relevant interfaces and logic for the friend system. Although the current version mainly focuses on group chat, the following functions can be expanded in the future:
+
+- **Friend Management**: Add and delete friends
+- **Private Chat Function**: Establish point-to-point private chat sessions
+- **Status Synchronization**: Friend online/offline status display
+
+*Note: At this stage, these functions are optional items and are not forcibly required to be implemented.*
+
+## Development Environment
+
+- **JDK**: Java 11 (Recommended) / Java 8
+- **Build Tool**: Maven
+- **UI Framework**: Java Swing / JavaFX
+- **Dependencies**: The project has built-in required dependency libraries (located in the `lib/` directory), and can be built without additional Maven repository configuration.
+
+## How to Run
+
+1. **Start Server**
+ Run the `main` method in [`src/server/Server.java`](src/server/Server.java).
+
+2. **Start Client**
+ Run the `main` method in [`src/client/Client.java`](src/client/Client.java).
+ *Note: Please ensure the server is started, otherwise the client cannot connect.*
+
+## Contribution Guide
+
+1. Fork this repository
+2. Create `feature/xxx` branch
+3. Commit your code
+4. Create Pull Request
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..61a04e5
--- /dev/null
+++ b/README.md
@@ -0,0 +1,135 @@
+# LocalChatApp (本地网络聊天室)
+
+添砖加瓦小组的第二次小项目:一个基于 Java Swing 和 Socket 的本地局域网聊天应用。
+
+## 简介
+
+本项目是一个 C/S 架构的即时通讯软件,支持用户注册、登录、群组聊天、群组管理等功能。
+项目采用 Java 语言开发,使用 Swing 作为 GUI 框架,底层通过 TCP Socket 进行全双工通信。
+
+## 软件架构
+
+项目主要分为三个核心包:`client`(客户端)、`server`(服务端)和 `global`/`util`(公共组件)。
+
+### 目录结构说明
+
+- **客户端 (Client)**
+ - 入口文件: [`src/client/Client.java`](src/client/Client.java)
+ - 业务逻辑: [`src/client/service/`](src/client/service/)
+ - `ChatReceiver.java`: 负责接收服务端消息,驱动 UI 更新
+ - `ChatSender.java`: 负责发送消息给服务端
+ - `LocalData.java`: 客户端本地数据缓存
+ - 界面展示: [`src/client/view/`](src/client/view/)
+ - `LoginPage.java`: 登录/注册主容器
+ - `MainPage.java`: 聊天主界面容器
+ - `login/`: 登录与注册的具体视图组件
+ - `main/`: 聊天窗口、群组列表等具体视图组件
+
+- **服务端 (Server)**
+ - 入口文件: [`src/server/Server.java`](src/server/Server.java)
+ - 业务服务: [`src/server/serveice/`](src/server/serveice/)
+ - `ClientChatThread.java`: 处理单个客户端的连接线程
+ - `Wrapper.java`: 通信协议数据包定义
+ - 数据模型: [`src/server/data/`](src/server/data/)
+
+- **公共组件**
+ - 全局常量: [`src/global/global.java`](src/global/global.java)
+ - 工具类: [`src/util/`](src/util/)
+ - `MsgUtil.java`: 消息处理工具
+ - `SocketUtil.java`: Socket 相关工具
+ - `FileUtil.java`: 文件操作工具
+
+## 核心功能
+
+1. **用户系统**
+ - 登录与注册:支持新用户注册和账号登录验证
+ - 个人信息维护:支持修改头像、签名、生日等个人信息
+2. **即时通讯**
+ - **群组聊天**:支持创建群组、加入群组、群内实时消息广播
+ - **私聊功能**:支持好友间点对点私聊,消息实时推送
+ - **混合消息列表**:统一展示群聊和私聊会话,直观管理所有聊天
+3. **好友与关系链**
+ - **好友管理**:支持查找用户、发送好友请求、同意/拒绝好友申请
+ - **状态同步**:实时感知好友在线/离线状态
+4. **数据持久化**
+ - 服务端自动保存群组信息、用户信息及聊天记录
+ - 客户端本地缓存最近的聊天数据和用户配置
+
+## 拓展功能
+
+*注:以下功能为项目进阶特性,已在当前版本中完全实现。*
+
+- **好友系统深度集成**:不仅支持基础的增删好友,还实现了好友状态的实时同步和私聊消息的独立存储。
+- **动态 UI 交互**:
+ - 登录/注册面板平滑切换
+ - 消息列表根据消息类型(群聊/私聊)自动展示不同图标和状态
+ - 聊天窗口自适应调整,支持显示历史消息记录
+
+## UI 组件介绍
+
+本项目存在动态替换 UI 组件的设计模式。例如在登录界面,当用户点击“注册”按钮时,登录面板(SignIn)会被替换为注册面板(SignUp)。
+
+- **登录页面 (`LoginPage`)**
+ - 包含 `SignInView`: 登录表单组件
+ - 包含 `SignUpView`: 注册表单组件
+ - *替换逻辑*: 通过 `CardLayout` 或移除/添加组件的方式实现面板切换。
+
+- **主界面 (`MainPage`)**
+ - **左侧导航 (`SideOptionView`)**: 功能菜单与群组列表
+ - **中间内容 (`ContentView`)**: 聊天窗口与消息展示
+ - **二级选项 (`SecondaryOptionView`)**: 辅助功能入口。*(更新:顶部标题栏添加了明显的上下分割线,增强了与聊天列表及窗口标题的视觉层次感)*
+
+- **UI 工具包 (`util`)**
+ - 包含自定义 UI 元素(如 `BlueOutlineWhiteBtn`、`CircleCharIcon2`)
+ - `DesignToken`: 统一定义颜色、字体等设计规范,确保 UI 风格一致性。
+
+## 项目打包
+
+本项目支持生成包含客户端和服务端的独立安装包。
+
+1. **编译打包**:
+ 使用 Maven 进行编译,`pom.xml` 已配置 `maven-resources-plugin` 自动复制依赖到 `target/lib`。
+ ```bash
+ mvn clean package
+ ```
+
+2. **生成客户端和服务端映像**:
+ 使用 `jpackage` 生成包含 JRE 的独立可执行程序。
+
+ * **生成客户端**:
+ ```bash
+ jpackage --type app-image --input target --main-jar LocalChatRoom-1.0-SNAPSHOT.jar --main-class client.Client --dest dist --name LocalChatClient --java-options "-Dfile.encoding=UTF-8"
+ ```
+
+ * **生成服务端**:
+ ```bash
+ jpackage --type app-image --input target --main-jar LocalChatRoom-1.0-SNAPSHOT.jar --main-class server.Server --dest dist --name LocalChatServer --java-options "-Dfile.encoding=UTF-8"
+ ```
+
+3. **生成安装包**:
+ 使用 Inno Setup 编译 `dist/setup.iss` 脚本,最终生成 `dist/Output/LocalChatApp_Setup.exe`。
+ 安装包将同时包含客户端和服务端程序。
+
+
+## 开发环境
+
+- **JDK**: Java 11 (推荐) / Java 8
+- **Build Tool**: Maven
+- **UI Framework**: Java Swing / JavaFX
+- **Dependencies**: 项目已内置所需依赖库(位于 `lib/` 目录),无需额外配置 Maven 仓库即可构建。
+
+## 如何运行
+
+1. **启动服务端**
+ 运行 [`src/server/Server.java`](src/server/Server.java) 中的 `main` 方法。
+
+2. **启动客户端**
+ 运行 [`src/client/Client.java`](src/client/Client.java) 中的 `main` 方法。
+ *注意:请确保服务端已启动,否则客户端无法连接。*
+
+## 贡献指南
+
+1. Fork 本仓库
+2. 新建 `feature/xxx` 分支
+3. 提交代码
+4. 新建 Pull Request
diff --git a/dist/LocalChat.ico b/dist/LocalChat.ico
new file mode 100644
index 0000000000000000000000000000000000000000..40ea7dc1413cd087dec73af7f9403e7ec011cd31
GIT binary patch
literal 75216
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%0D^dS%nkSBPEpKIS{(ok;(#tF{~gXqQt;S
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 (k79Foo#w_
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 |