Zoeken…


Echo Input Args in Java

U kunt deze informatie gemakkelijk verkrijgen door de invoer in uw handlerfunctie te blokkeren. In Java bijvoorbeeld:

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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow