Skip to content

Commit ec90fc8

Browse files
Parse Large Json File GSON Example
0 parents  commit ec90fc8

File tree

8 files changed

+482
-0
lines changed

8 files changed

+482
-0
lines changed

ParseLargeJsonFileGSONExample/.idea/compiler.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ParseLargeJsonFileGSONExample/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ParseLargeJsonFileGSONExample/.idea/misc.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ParseLargeJsonFileGSONExample/.idea/workspace.xml

Lines changed: 289 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4" />
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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>ParseLargeJsonFileGSONExample</groupId>
8+
<artifactId>ParseLargeJsonFileGSONExample</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<description>Parse Large Json File GSON Example</description>
12+
<build>
13+
<finalName>ParseLargeJsonFileGSONExample</finalName>
14+
<plugins>
15+
<plugin>
16+
<groupId>org.apache.maven.plugins</groupId>
17+
<artifactId>maven-compiler-plugin</artifactId>
18+
<configuration>
19+
<source>1.8</source>
20+
<target>1.8</target>
21+
</configuration>
22+
</plugin>
23+
</plugins>
24+
</build>
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.google.code.gson</groupId>
28+
<artifactId>gson</artifactId>
29+
<version>2.2.4</version>
30+
</dependency>
31+
</dependencies>
32+
</project>

0 commit comments

Comments
 (0)