Поиск…


Echo Input Args в Java

Вы можете легко получить эту информацию, указав ввод в своей функции обработчика. Например, в 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
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow