Suche…


Echo Input Args in Java

Sie können diese Informationen einfach abrufen, indem Sie die Eingabe in Ihrer Handler-Funktion deaktivieren. Zum Beispiel in 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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow