From adcbce8255b1820126ea881f392cbad8387d83f1 Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Sat, 4 Jun 2022 15:27:57 -0400 Subject: [PATCH 1/3] =?UTF-8?q?=E7=90=86=E8=A7=A3=20Java=20=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=20NumberFormatException=20=E5=BC=82=E5=B8=B8=20https:?= =?UTF-8?q?//www.ossez.com/t/java-numberformatexception/13986=20=E6=96=87?= =?UTF-8?q?=E7=AB=A0=E6=8F=90=E4=BA=A4=E5=88=B0=E5=88=97=E8=A1=A8=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/workspace.xml | 36 ++++++++++++------------------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 649b14544d..f238611c08 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,20 +4,8 @@ - @@ -749,7 +736,8 @@ - From 198d95dba9ee33de51272d44f580a2b225057410 Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Sat, 4 Jun 2022 15:30:42 -0400 Subject: [PATCH 2/3] =?UTF-8?q?=E7=90=86=E8=A7=A3=20Java=20=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=20NumberFormatException=20=E5=BC=82=E5=B8=B8=20https:?= =?UTF-8?q?//www.ossez.com/t/java-numberformatexception/13986=20=E6=96=87?= =?UTF-8?q?=E7=AB=A0=E6=8F=90=E4=BA=A4=E5=88=B0=E5=88=97=E8=A1=A8=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 对 numbers 模块进行初始化和格式化 --- .idea/workspace.xml | 26 +++++---- core-java-modules/core-java-numbers/README.md | 7 +++ core-java-modules/core-java-numbers/pom.xml | 55 +++++++++++++++++++ .../src/main/resources/logback.xml | 13 +++++ .../src/test/resources/numbers.txt | 1 + 5 files changed, 90 insertions(+), 12 deletions(-) create mode 100644 core-java-modules/core-java-numbers/README.md create mode 100644 core-java-modules/core-java-numbers/pom.xml create mode 100644 core-java-modules/core-java-numbers/src/main/resources/logback.xml create mode 100644 core-java-modules/core-java-numbers/src/test/resources/numbers.txt diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f238611c08..fa6197841d 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,7 +4,9 @@ - + + + @@ -712,7 +714,6 @@ - @@ -737,7 +738,8 @@ - diff --git a/core-java-modules/core-java-numbers/README.md b/core-java-modules/core-java-numbers/README.md new file mode 100644 index 0000000000..f2bd59fec9 --- /dev/null +++ b/core-java-modules/core-java-numbers/README.md @@ -0,0 +1,7 @@ +## Java 数字(Number) + +This module contains articles about strings in Java. + +### 相关文章 +- [理解 Java 中的 NumberFormatException 异常](https://www.ossez.com/t/java-numberformatexception/13986) +- \ No newline at end of file diff --git a/core-java-modules/core-java-numbers/pom.xml b/core-java-modules/core-java-numbers/pom.xml new file mode 100644 index 0000000000..ed8f98885b --- /dev/null +++ b/core-java-modules/core-java-numbers/pom.xml @@ -0,0 +1,55 @@ + + + 4.0.0 + core-java-numbers + core-java-strings + jar + + + com.ossez + parent-modules + 0.0.2-SNAPSHOT + ../pom.xml + + + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.openjdk.jmh + jmh-core + ${jmh-core.version} + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh-generator.version} + + + com.ibm.icu + icu4j + ${icu4j.version} + + + + + core-java-strings + + + src/main/resources + true + + + + + + 61.1 + 15 + + + \ No newline at end of file diff --git a/core-java-modules/core-java-numbers/src/main/resources/logback.xml b/core-java-modules/core-java-numbers/src/main/resources/logback.xml new file mode 100644 index 0000000000..7d900d8ea8 --- /dev/null +++ b/core-java-modules/core-java-numbers/src/main/resources/logback.xml @@ -0,0 +1,13 @@ + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + + + \ No newline at end of file diff --git a/core-java-modules/core-java-numbers/src/test/resources/numbers.txt b/core-java-modules/core-java-numbers/src/test/resources/numbers.txt new file mode 100644 index 0000000000..43dd47ea69 --- /dev/null +++ b/core-java-modules/core-java-numbers/src/test/resources/numbers.txt @@ -0,0 +1 @@ +one \ No newline at end of file From 35e756ef9cfe274216699a7725a58622593065aa Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Sun, 5 Jun 2022 08:45:26 -0400 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E4=B8=AD=20README=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=20=E5=BF=AB=E9=80=9F=E5=AF=BC=E8=88=AA=20=E6=8E=92?= =?UTF-8?q?=E7=89=88=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/workspace.xml | 27 +++++++++++++-------------- README.md | 27 ++++++++++++++++++--------- 2 files changed, 31 insertions(+), 23 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index fa6197841d..1dd704ae72 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,10 +4,9 @@ - - - + + @@ -714,7 +713,6 @@ - @@ -739,7 +737,8 @@ - diff --git a/README.md b/README.md index 4dafa7e44e..f8b9ce65a3 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,13 @@ 请使用下面的联系方式和我们联系: -| 联系方式名称 | 联系方式 | -|---------|----------------------------------------------------| -| 电子邮件 | [service@ossez.com](mailto:service@ossez.com) | -| QQ 或微信 | 103899765 | -| QQ 交流群 | 15186112 | -| 社区论坛 | [ 公众平台 +| 联系方式名称 | 联系方式 | +|--------|-----------------------------------------------| +| 电子邮件 | [service@ossez.com](mailto:service@ossez.com) | +| QQ 或微信 | 103899765 | +| QQ 交流群 | 15186112 | +| 社区论坛 | [ 公众平台 | + 我们建议您通过社区论坛来和我们进行沟通,请关注我们公众平台上的账号 ## 微信公众号 @@ -30,8 +31,16 @@ ## 头条号 我们也在头条号上创建了我们的公众号,请扫描下面的 QR 关注我们的头条号。 -![](https://cdn.ossez.com/img/cwikius/cwikus-qr-toutiao.png)https://www.ossez.com/](https://www.ossez.com/) | -| WIKI 维基 | [https://www.cwiki.us/](https://www.cwiki.us/) | -| CN 博客 | [https://www.cwikius.cn/](https://www.cwikius.cn/) | +![](https://cdn.ossez.com/img/cwikius/cwikus-qr-toutiao.png) + +## 快速导航 +在下面的表格中,我们列出了一些比较有用的 CWIKIUS 相关软件开发使用教程的导航,欢迎访问下面的链接获得更多的内容和参与讨论 + +| 网站名称 | URL | NOTE | +|----------------|--------------------------------------------------------|----------------------------| +| OSSEZ 社区 | https://www.ossez.com/](https://www.ossez.com/) | 开放社区,欢迎注册参与讨论 | +| WIKI 维基 | [https://www.cwiki.us/](https://www.cwiki.us/) | 使用 Confluence 部署的 WIKI 知识库 | +| DOCS.OSSEZ.COM | [https://docs.ossez.com/#/](https://docs.ossez.com/#/) | 本手册的编译版本将会部署在这个链接上 | +| CN 博客 | [http://www.cwikius.cn/](http://www.cwikius.cn/) | CWIKIUS.CN 一个有独立思考和温度的清新站 | ## \ No newline at end of file