Question

Request.config(CoreProtocolPNames.HTTP_CONTENT_CHARSET, Consts.UTF_8) and Request.elementCharset(charset) are Deprecated.

Now how to set the request charset to utf-8 with fluent?

Request.Post(url)
    .useExpectContinue()
    .version(HttpVersion.HTTP_1_1)
    .bodyString("Important stuff", ContentType.DEFAULT_TEXT)
    .execute().returnContent().asBytes();
Était-ce utile?

La solution 2

Try

Request.setHeader(CoreProtocolPNames.HTTP_CONTENT_CHARSET, Consts.UTF_8);

Autres conseils

That would be the right way doing it

Request.Post("someurl")
        .useExpectContinue()
        .version(HttpVersion.HTTP_1_1)
        .bodyString("Important stuff", ContentType.create("text/plain", Consts.UTF_8))
        .execute()
        .returnContent().asBytes();    
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top