我正在尝试使用以下代码将图像上传到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/
最佳答案
我认为您需要将Bc4jdomorcl.jar包含到库中。