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