9

moshi にインデント付きの複数行の json を生成させる方法を知っている人はいますか ( config.json のコンテキストで人間が消費するため)。

{"max_additional_random_time_between_checks":180,"min_time_between_checks":60}

このようなものに:

{
   "max_additional_random_time_between_checks":180,
   "min_time_between_checks":60
}

他の json-writer 実装がそうできることは知っていますが、一貫性を保つためにここでは moshi に固執したいと思います

4

2 に答える 2

7

オブジェクトのシリアル化を自分で処理できる場合は、これでうまくいくはずです。

import com.squareup.moshi.JsonWriter;
import com.squareup.moshi.Moshi;

import java.io.IOException;

import okio.Buffer;

public class MoshiPrettyPrintingTest {

    private static class Dude {
        public final String firstName = "Jeff";
        public final String lastName = "Lebowski";
    }

    public static void main(String[] args) throws IOException {

        final Moshi moshi = new Moshi.Builder().build();

        final Buffer buffer = new Buffer();
        final JsonWriter jsonWriter = JsonWriter.of(buffer);

        // This is the important part:
        // - by default this is `null`, resulting in no pretty printing
        // - setting it to some value, will indent each level with this String
        // NOTE: You should probably only use whitespace here...
        jsonWriter.setIndent("    ");

        moshi.adapter(Dude.class).toJson(jsonWriter, new Dude());

        final String json = buffer.readUtf8();

        System.out.println(json);
    }
}

これは以下を出力します:

{
    "firstName": "Jeff",
    "lastName": "Lebowski"
} 

このテスト ファイルと のソース コードを参照prettyPrintObject()してください。BufferedSinkJsonWriter

ただし、Retrofit で Moshi を使用している場合に、これが可能かどうか、またどのように可能かはまだわかりません。

于 2016-01-27T11:27:29.497 に答える