end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2017-03-27から1日間の記事一覧

PMD で java の循環的複雑度(code metrics CyclomaticComplexity )を計測

https://pmd.github.io/ https://pmd.github.io/pmd-5.5.4/pmd-java/ https://pmd.github.io/pmd-5.5.4/usage/running.html install eclipse plug-inもあると思いますが、今回は、command-line用をinstall. $ cd /home/endo/local $ wget https://downloads.…

snakeyaml for java による yaml load/read

javaにおけるyaml用ライブラリはいくつもあるようですが、何となく今日はsnakeYAML. https://bitbucket.org/asomov/snakeyaml/wiki/Installation https://bitbucket.org/asomov/snakeyaml/wiki/Documentation package jp.end0tknr; import java.io.File; imp…

apache commons configuration for java で INI file を load / read

http://commons.apache.org/proper/commons-configuration/ ini形式の設定ファイルをloadする必要があったので、探したら、見かけた。 ※ini以外にも、 .xmlや .properties 等に対応しているようです。 ( 一方で、.json や、.yaml には対応していません ) pac…