Fight the Future

Java言語とJVM、そしてJavaエコシステム全般にまつわること

2010-05-21から1日間の記事一覧

MacでMySQLにファイルからレコード取り込み

mac

load data infile '/Users/jyukutyo/item.csv' into table item fields terminated by ',' enclosed by '"' lines terminated by '\n';

Jackson JSONで出力日付フォーマットを指定する

Ismail Seyfi's Blog: How to control Date formatting when Jackson JSON Processor is used with Spring 3.0 import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.codehaus.…

Mavenでコンパイルの文字コードを指定する

Windowsでmvnしたら文字コードのエラーが出たので。 <build> <finalName>xxx</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build>