Recherche…


Arches d'entrée d'écho en Java

Vous pouvez facilement obtenir ces informations en faisant apparaître les entrées de votre fonction de gestionnaire. Par exemple, en Java:

public String handleRequest(String input, Context context) {
    context.getLogger().log("Input: " + input);

    String output = "Input:" + System.getProperty("line.separator") + input;
    
    return output;
}


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow