ExtJs 3.2.2+Struts 2実装ファイルのアップロード


Struts 2はCommon-FileUploadフレームワークとCOSフレームワークをサポートしているが、Struts 2はこれらのアップロードプロジェクトに基づいてパッケージ化され、アップロードファイルのコードプログラミングの違いを遮断している.
var uploadForm = new Ext.form.FormPanel({
......
fileUpload : true,//       ,            
items:[{
xtype : 'textfield',
fieldLabel : '    ',
id : 'uploadFile',
name : 'uploadFile',
inputType : 'file',//          
vtype : 'fileType',
allowBlank : false
}]
......
})

SongActionでは、ファイルのアップロード情報を格納する3つの属性を定義します.
private File uploadFile;//音源ファイル(アップロードファイルの内容を格納するために必要)
private String uploadFileFileName;//音源ファイル名(オプション、アップロードファイルを格納するファイル名、パスを含まない)
private String uploadFileContentType;//音源のタイプ(オプション)
注意:3つの属性の命名には規定があり、フォームのファイルドメインのidがxxxと命名された場合、上記の3つの属性の命名規則は以下の通りです.
private File xxx;
private String xxxFileName;
private String xxxContentType;

ファイルを保存:
private static void copy(File src, File dst) {
		//TODO
		try {
			InputStream in = null;
			OutputStream out = null;
			try {
				in = new BufferedInputStream(new FileInputStream(src),
						BUFFER_SIZE);
				out = new BufferedOutputStream(new FileOutputStream(dst),
						BUFFER_SIZE);
				byte[] buffer = new byte[BUFFER_SIZE];
				while (in.read(buffer) > 0) {
					out.write(buffer);
				}
			} finally {
				if (null != in) {
					in.close();
				}
				if (null != out) {
					out.close();
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

お暇でしたら、いらっしゃいませ
サツマイモぶらぶら