JPostal

Japan postal code dictionary utility

License

License

GroupId

GroupId

com.mammb
ArtifactId

ArtifactId

jpostal
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

pom.sha512
Description

Description

JPostal
Japan postal code dictionary utility
Project URL

Project URL

https://github.com/naotsugu/jpostal
Source Code Management

Source Code Management

https://github.com/naotsugu/jpostal

Download jpostal

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

JPostal

Japan postal code dictionary(so‐called ken_all.csv) utility.

jpostal


Feature

  • Automatically download japan postal code csv from japanpost.jp
  • Format address pretty well
  • Auto update support (monthly)
  • Minimal REST web server included
  • No dependencies (only jdk)

Usage

Add dependencies

dependencies {
    implementation 'com.mammb:jpostal:0.2.0'
}

Create and initialize Postal.

Postal postal = Postal.of();
postal.initialize();

Get address by postal code query.

String code = "105001";
Collection<Address> addresses = postal.get(code);
//[{"code": "1050011", "prefecture": "東京都", "city": "港区", "town": "芝公園", "street": ""},
// {"code": "1050012", "prefecture": "東京都", "city": "港区", "town": "芝大門", "street": ""},
// {"code": "1050013", "prefecture": "東京都", "city": "港区", "town": "浜松町", "street": ""}, 
// {"code": "1050014", "prefecture": "東京都", "city": "港区", "town": "芝", "street": ""}]

PostalServer

If you needs rest server, run jpostal.jar.

Get jpostal.jar from https://github.com/naotsugu/jpostal/releases and run it.

Or clone and build and run.

$ git clone https://github.com/naotsugu/jpostal.git
$ cd jpostal
$ ./gradlew jar
$ java -jar build/libs/jpostal.jar

Or use PostalServer.

PostalServer server = PostalServer.of(postal);
server.start();

Go to http://localhost:8080/postal/105001, then you gets address by json format.

In addition, console page is http://localhost:8080/postal/console.html.


Options

Postal postal = Postal.of()
    .fineAddressSupport(true)
    .leftMatchSupport(true)
    .leftMatchLimitCount(15)
    .officeSourceSupport(true)
    .autoUpdateSupport(true);
Option Default
fineAddressSupport true
leftMatchSupport true
leftMatchLimitCount 20
officeSourceSupport false
autoUpdateSupport false

Details

See README.ja.md

Versions

Version
0.2.0
0.1.0