5
//マルチパートファイルをDBに保存するための他の解決方法。 私はこの方法で試しましたが、エラーが発生しました。MultipartFileをバイトストリームに変換する方法
File fileOne = new File("file.getOrignalFileName");//what should be kept inside this method
byte[] bFile = new byte[(int) fileOne.length()];
try {
FileInputStream fileInputStream = new FileInputStream(fileOne);
//convert file into array of bytes
fileInputStream.read(bFile);
fileInputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
questionDao.saveImage(bFile);
}
あなたはどのようなエラーを取得していますか? –
あなたはどんなエラーを受けていますか?どのようにMultipartファイル(MIME、JMSなど)を使用していますか? – Filip
ORMマッピングを使用してイメージファイル(png)を取得しようとしています –