CORDEA blog

Android applications engineer

2016-02-24から1日間の記事一覧

Windows で perl5 の DBI モジュール使って嵌った話

perl5 の DBI モジュールを使用する際で data_source の指定パスに日本語含まれてる場合に嵌った。 環境 Windows 7, 10 ActivePerl >perl --version This is perl 5, version 22, subversion 1 (v5.22.1) built for MSWin32-x64-multi-t hread (with 1 regis…

Kotlin + OkHttp3 + Retrofit2 でヘッダの追加とか

Kotlin でアプリ書いてる時にちょっと戸惑った OkHttpClient のヘッダーの追加は val httpClient = OkHttpClient.Builder() .addInterceptor { it.proceed(it.request() .newBuilder() .addHeader("Content-Type", "application/json") .build()) } .build()…