我正在尝试使用以下代码将图像上传到 ADF 移动应用程序中的 SQLite DB。我尝试用 导入BLOBDomain
, import oracle.jbo.domain.BlobDomain;
找不到包。
private BlobDomain createBlobDomain(File file){
InputStream in = null;
BlobDomain blobDomain = null;
OutputStream out = null;
try
{
in = file.getInputStream();
blobDomain = new BlobDomain();
out = blobDomain.getBinaryOutputStream();
IOUtils.copy(in, out);
}
catch (IOException e)
{
e.printStackTrace();
}
catch (SQLException e)
{
e.fillInStackTrace();
}
return blobDomain;
}
我应该使用什么正确的包来导入BlobDomain
,或者有人知道在 ADF 应用程序中将图像存储到 SQLite 数据库的更好方法吗?
来源: http ://tompeez.wordpress.com/2011/11/26/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-2/