https://github.com/try0/japanpost-zipcode
Java 郵便番号CSVユーティリティー utf_ken_all.zip
https://github.com/try0/japanpost-zipcode
csv japan-post japan-post-code zipcode
Last synced: 6 months ago
JSON representation
Java 郵便番号CSVユーティリティー utf_ken_all.zip
- Host: GitHub
- URL: https://github.com/try0/japanpost-zipcode
- Owner: try0
- License: apache-2.0
- Created: 2024-01-28T03:32:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T03:42:21.000Z (about 2 years ago)
- Last Synced: 2025-03-04T04:12:27.851Z (12 months ago)
- Topics: csv, japan-post, japan-post-code, zipcode
- Language: Java
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# utf_ken_all.zipユーティリティー
[https://www.post.japanpost.jp/zipcode/download.html](https://www.post.japanpost.jp/zipcode/download.html)
[https://www.post.japanpost.jp/zipcode/dl/utf-zip.html](https://www.post.japanpost.jp/zipcode/dl/utf-zip.html)
```xml
jp.try0.zipcode
japanpost-zipcode-core
0.0.1
```
```java
ZipcodeCSV csv = ZipcodeCSV.getOrDownload();
Iterable rows = csv.getRows();
```
utf_ken_all.zip
↓ Download
java.io.tmpdir
↓ CSV読み込み
Iterable\
```java
ZipcodeCSVDownloader downloader = ZipcodeCSVDownloader.get();
File zipFile = downloader.download();
ZipcodeCSVParser parser = new ZipcodeCSVParser(zipFile);
Iterable rows = parser.parse();
```