public static void getImage(String fileName) {
File file = new File( "~/" + fileName );
response.contentType = "image/png";
renderBinary( file );
}
このメソッドの応答と renderBinary でエラーが表示されています
public static void getImage(String fileName) {
File file = new File( "~/" + fileName );
response.contentType = "image/png";
renderBinary( file );
}
このメソッドの応答と renderBinary でエラーが表示されています
使用しているコードは Playframework 1.x 用であり、2.x バージョンとは互換性がありません。この 2 つのバージョンはまったく異なります。
@rags が述べたように、Play 2.0 でバイナリをレンダリングする方法をご覧ください。
Content-Type の詳細については、http ://www.playframework.com/documentation/2.1.1/JavaResponse を参照してください。