Skip to content

Commit f8ee4fd

Browse files
committed
app-nsv-core-java
0 parents  commit f8ee4fd

File tree

3 files changed

+169
-0
lines changed

3 files changed

+169
-0
lines changed

.gitignore

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
# User-specific stuff
26+
.idea/**
27+
.idea/**/workspace.xml
28+
.idea/**/tasks.xml
29+
.idea/**/usage.statistics.xml
30+
.idea/**/dictionaries
31+
.idea/**/shelf
32+
33+
# Generated files
34+
.idea/**/contentModel.xml
35+
36+
# Sensitive or high-churn files
37+
.idea/**/dataSources/
38+
.idea/**/dataSources.ids
39+
.idea/**/dataSources.local.xml
40+
.idea/**/sqlDataSources.xml
41+
.idea/**/dynamic.xml
42+
.idea/**/uiDesigner.xml
43+
.idea/**/dbnavigator.xml
44+
45+
# Gradle
46+
.idea/**/gradle.xml
47+
.idea/**/libraries
48+
49+
# Gradle and Maven with auto-import
50+
# When using Gradle or Maven with auto-import, you should exclude module files,
51+
# since they will be recreated, and may cause churn. Uncomment if using
52+
# auto-import.
53+
# .idea/modules.xml
54+
.idea/*.xml
55+
.idea/workspace.xml
56+
**.iml
57+
# .idea/modules
58+
59+
# CMake
60+
cmake-build-*/
61+
62+
# Mongo Explorer plugin
63+
.idea/**/mongoSettings.xml
64+
65+
# File-based project format
66+
*.iws
67+
68+
# IntelliJ
69+
out/
70+
71+
# mpeltonen/sbt-idea plugin
72+
.idea_modules/
73+
74+
# JIRA plugin
75+
atlassian-ide-plugin.xml
76+
77+
# Cursive Clojure plugin
78+
.idea/replstate.xml
79+
80+
# Crashlytics plugin (for Android Studio and IntelliJ)
81+
com_crashlytics_export_strings.xml
82+
crashlytics.properties
83+
crashlytics-build.properties
84+
fabric.properties
85+
86+
# Editor-based Rest Client
87+
.idea/httpRequests
88+
89+
# Android studio 3.1+ serialized cache file
90+
.idea/caches/build_file_checksums.ser
91+
92+
### Intellij Patch ###
93+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
94+
95+
# *.iml
96+
# modules.xml
97+
# .idea/misc.xml
98+
# *.ipr
99+
100+
# Sonarlint plugin
101+
.idea/sonarlint
102+
103+
### Java ###
104+
105+
### Java-Web ###
106+
## ignoring target file
107+
target/
108+
109+
### Windows ###
110+
# Windows thumbnail cache files
111+
Thumbs.db
112+
ehthumbs.db
113+
ehthumbs_vista.db
114+
115+
# Dump file
116+
*.stackdump
117+
118+
# Folder config file
119+
[Dd]esktop.ini
120+
121+
# Recycle Bin used on file shares
122+
$RECYCLE.BIN/
123+
124+
# Windows Installer files
125+
*.cab
126+
*.msi
127+
*.msix
128+
*.msm
129+
*.msp
130+
131+
# Windows shortcuts
132+
*.lnk
133+
134+
# End of https://www.gitignore.io/api/java,windows,intellij,java-web

pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.nsv</groupId>
8+
<artifactId>app-nsv-core-java</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
12+
</project>
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.nsv.util;
2+
3+
import java.text.ParseException;
4+
import java.text.SimpleDateFormat;
5+
import java.util.Date;
6+
7+
public class DateMain {
8+
public static void main(String[] args) throws ParseException {
9+
10+
11+
Date date = new Date();
12+
System.out.println(date);
13+
14+
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
15+
String formattedDate = simpleDateFormat.format(date);
16+
System.out.println(formattedDate);
17+
18+
Date parsedDate = simpleDateFormat.parse(formattedDate);
19+
System.out.println(parsedDate);
20+
21+
22+
}
23+
}

0 commit comments

Comments
 (0)