0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MarkLogic アプリ開発チュートリアル:バイナリファイルの読み書き

Posted at

NoSQL製品であるMarkLogicのチュートリアル第3回です。

バイナリファイルを読み書きするサンプルを作ってみます。

以下の手順を既に済ませている前提で説明します。

準備

プロジェクトのルートディレクトリにmy.pngという名称でバイナリファイルを置きます。

データベースに書き込むクラスの作成

WriteBinaryData.java
    public static void main(String[] args) {
        // データベースクライアントの取得
        DatabaseClient client = DatabaseClientFactory.newClient(
                "localhost", 8000, "aaa", "pass", DatabaseClientFactory.Authentication.DIGEST
        );

        // DocumentManagerの取得
        BinaryDocumentManager biMgr = client.newBinaryDocumentManager();

        // データベースにメタデータも書き込まれるように指定
        // (指定が無い場合、書き込まれない)
        biMgr.setMetadataExtraction(BinaryDocumentManager.MetadataExtraction.PROPERTIES);

        // バイナリデータを書き込み
        biMgr.write(
                "/example/my.png",
                new FileHandle().with(new File("my.png")).withMimetype("image/png")
        );

        // クライアントの解放
        client.release();

    }
  • BinaryDocumentManagerを使います。
  • このサンプルではFileHandleを使っていますが、以下のHandleのどれを使っても良いです。
    • FileHandle
    • BytesHandle
    • InputStreamHandle
    • OutputStreamHandle
    • URIHandle

実行

ビルドして実行します。

19:47:01.551 [main] DEBUG c.m.client.DatabaseClientFactory - Creating new database client for server at localhost:8000
19:47:01.576 [main] DEBUG c.m.client.impl.JerseyServices - Connecting to localhost at 8000 as aaa
19:47:01.854 [main] INFO  c.m.client.impl.DocumentManagerImpl - Writing content for /example/my.png
19:47:01.855 [main] DEBUG c.m.client.impl.JerseyServices - Sending /example/my.png document in transaction null
19:47:03.121 [main] INFO  c.m.client.impl.DatabaseClientImpl - Releasing connection
19:47:03.121 [main] DEBUG c.m.client.impl.JerseyServices - Releasing connection

クエリコンソールで確認します。http://localhost:8000/qconsole/
png.png

リンクをクリックすると、アップロードした画像が表示されます。

データベースから読み込むクラスの作成

ReadBinaryData.java
    public static void main(String[] args) {

        // データベースクライアントの取得
        DatabaseClient client = DatabaseClientFactory.newClient(
                "localhost", 8000, "aaa", "pass", DatabaseClientFactory.Authentication.DIGEST
        );

        // DocumentManagerの取得
        BinaryDocumentManager biMgr = client.newBinaryDocumentManager();

        // ストリームに読み込む
        InputStream is =
                biMgr.read("/example/my.png", new InputStreamHandle()).get();

        // ローカルファイルのストリームを開く
        try (FileOutputStream fos = new FileOutputStream("/tmp/my.png")) {
            // 読み込んだ内容を転記
            ReadableByteChannel rbc = Channels.newChannel(is);
            fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);

        } catch (IOException e) {
            // エラーが発生したら中断
            throw new RuntimeException(e);

        } finally {
            // クライアントの解放
            client.release();
        }

    }
  • BinaryDocumentManagerを使います。
  • このサンプルではInputStreamHandleを使っていますが、書き込みの場合と同様、他も使えます。

実行

ビルドして実行します。

19:50:15.740 [main] DEBUG c.m.client.DatabaseClientFactory - Creating new database client for server at localhost:8000
19:50:15.761 [main] DEBUG c.m.client.impl.JerseyServices - Connecting to localhost at 8000 as aaa
19:50:16.065 [main] INFO  c.m.client.impl.DocumentManagerImpl - Reading metadata and content for /example/my.png
19:50:16.066 [main] DEBUG c.m.client.impl.JerseyServices - Getting /example/my.png in transaction null
19:50:16.642 [main] INFO  c.m.client.impl.DatabaseClientImpl - Releasing connection
19:50:16.642 [main] DEBUG c.m.client.impl.JerseyServices - Releasing connection

先ほどデータベースにアップロードしたファイルと同じ内容のファイルが、/tmp/my.pngに作成されているはずです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?