Preguntas etiquetadas con multiline

114
¿Puede un valor JSON contener una cadena de varias líneas?

Estoy escribiendo un archivo JSON que sería leído por un programa Java. El fragmento es el siguiente ... { "testCases" : { "case.1" : { "scenario" : "this the case 1.", "result" : "this is a very long line which is not easily readble. so i would like to write it in multiple lines. but, i...

105
¿Qué pasa con Groovy multilínea String?

Groovy scripts genera un error: def a = "test" + "test" + "test" Error: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Si bien este script funciona bien: def a = new String( "test" + "test" + "test" ) ¿Por