URLからzipファイルを読み取っています。Javaと休止状態を使用して物理的に保存せずに、データベースに直接保存したいと考えています。
私はzipファイルを次のように読んでいます、
URLConnection uCon = null;
URL Url;
byte[] buf;
ZipOutputStream outStream = new ZipOutputStream(new FileOutputStream("mytest.zip"));
Url= new URL(http://xyz.com/pages/info.doc);
uCon = Url.openConnection();
is = uCon.getInputStream();
buf = new byte[size];
is = uCon.getInputStream();
outStream.putNextEntry(new ZipEntry("info.doc"));
while ((ByteRead = is.read(buf)) != -1)
{
outStream.write(buf, 0, ByteRead);
ByteWritten += ByteRead;
}
is.close();
outStream.close();
「mytest.zip」を作成したら物理的に保存したくありません。DB に直接保存したいですか? 出来ますか ?それはどのように行うことができますか?
前もって感謝します。