2013-06-05から1日間の記事一覧

InputStreamをStringに変換する

public static String inputStreemToString(InputStream in) throws IOException{ BufferedReader reader = new BufferedReader(new InputStreamReader(in, "UTF-8"/* 文字コード指定 */)); StringBuffer buf = new StringBuffer(); String str; while ((str…

指定した日付をdateコマンドで出力

$ date -d '2013-01-01 17:00' +%s 参考 http://parochially.hatenablog.com/entry/2013/01/09/205141

jqueryで別ドメインのsolrに問い合わせした結果を得る

$.ajax({ url: 'http://otherhost:8983/solr/collection1/select/', dataType: "jsonp", jsonp: 'json.wrf', data:{ 'wt':'json', 'json.wrf': 'jsoncallback', 'q': '*:*' }, success:function(json){ // ここでもらったJSONをごにょごにょする }, error:fu…