MongoDb 에서 파일 읽 기
package test;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import org.bson.Document;
import org.bson.types.Binary;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoCursor;
import com.mongodb.client.MongoDatabase;
public class MongoDBJDBC {
public static void main(String args[]) {
// Mongodb
MongoClient mongoClient = new MongoClient("127.0.0.1", 27017);
try {
// .
MongoDatabase db = mongoClient.getDatabase("ddj");
// .
MongoCollection collection = db
.getCollection("apfile");
//
MongoCursor cursor = collection.find().iterator();
if (cursor.hasNext()) {
// oracle blob (mongobd binData )
Binary binary = (Binary)cursor.next().get("FILE_CONT");
//
byte[] filebyte = binary.getData();
byte type = binary.getType();
System.out.println(type);
System.out.print(filebyte);
// ,
writeFile("C:/Users/zhaoyf/Desktop/888.png",filebyte,"UTF-8");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
//
mongoClient.close();
}
}
public static boolean writeFile(String filePath, byte[] bytes, String encoding) throws IOException {
File file = new File(filePath);
if (!file.getParentFile().exists()) {
if (!file.getParentFile().mkdirs()) {
return false;
}
}
FileOutputStream fos = new FileOutputStream(file);
byte[] bbuf = new byte[1024];
InputStream bis = new ByteArrayInputStream(bytes);
int hasRead = 0;
//
while ((hasRead = bis.read(bbuf)) > 0) {
fos.write(bbuf, 0, hasRead);
}
fos.close();
bis.close();
return true;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Heroku에서 mLab add-on 종료로 Mongo DB atlas로 마이그레이션Heroku의 Add-on으로 제공된 mLab MongoDB가 2020/11/10 종료됩니다. 요 전날 mLab이 MongoDB, Inc.에 인수되었기 때문에 동반됩니다. errbit 등을 Heroku에서 호스팅하는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.