English 中文(简体)
查阅 Java GridFS
原标题:Use mongofiles utility to access data inserted with Java GridFS API

I can successfully insert and retrieve data from MongoDB s GridFS in Java. However, when I try to access that data on the command line using mongofiles, I can t find it. The Java insertion code:

GridFS fs = new GridFS(Mongo.getStaticMongo("localhost:27017").getDB("myDb"), "myCollection");

try {
  GridFSInputFile inputFile = fs.createFile(content.getFile());
  inputFile.put(MONGO_KEY, content.getId().toString());   
  inputFile.save();
} catch (IOException e) {
  throw new RuntimeException(e);
}

指挥线:

>mongofiles --host localhost:27017 -d myDb -c myCollection -vvvvvv list
Tue Nov 09 11:48:01 creating new connection to:localhost:27017
connected to: localhost:27017

>

Java GridFS的司机在什么地方拿到这些档案?

问题回答

或许最好利用一个微型和小型的行政管理设施,来观察大湖数据库,了解情况。 I use phpMoAdmin。 我可以看到所有收藏品和物品。 您也可以编辑元数据。 至少这样,你就可以更广泛地看待问题。

<代码>mongofiles 指挥线工具只使用弹.。

还有一个开放式的联合执行项目来解决这一问题:





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签