Skip to contentSkip to navigationSkip to topbar
On this page

Gather User Input via Keypad (DTMF Tones) in Java


In this guide, we'll show you how to gather user input during a phone call through the phone's keypad (using DTMF(link takes you to an external page) tones) in your Java Servlets application. By applying this technique, you can create interactive voice response (IVR(link takes you to an external page)) systems and other phone based interfaces for your users. The code snippets in this guide are written using Java and require the Java JDK 7 or higher. They also make use of the Twilio Java SDK(link takes you to an external page).

Let's get started!


Set up your Java Servlets application to receive incoming phone calls

set-up-your-java-servlets-application-to-receive-incoming-phone-calls page anchor

This guide assumes you have already set up your web application to receive incoming phone calls. If you still need to complete this step, check out this guide. It should walk you through the process of buying a Twilio number and configuring your app to receive incoming calls from it.


Collect user input with the <Gather> TwiML verb

collect-user-input-with-the-gather-twiml-verb page anchor

The <Gather> TwiML verb allows us to collect input from the user during a phone call. Gathering user input through the keypad is a core mechanism of Interactive Voice Response (IVR) systems where users can press "1" to connect to one menu of options and press "2" to reach another. These prompts can be accompanied by voice prompts to the caller, using the TwiML <Say> and <Play> verbs. In this example, we will prompt the user to enter a number to connect to a certain department within our little IVR system.

Use <Gather> to collect user input via the keypad (DTMF tones)Link to code sample: Use <Gather> to collect user input via the keypad (DTMF tones)
1
import com.twilio.twiml.voice.Gather;
2
import com.twilio.twiml.voice.Redirect;
3
import com.twilio.twiml.voice.Say;
4
import com.twilio.twiml.TwiML;
5
import com.twilio.twiml.TwiMLException;
6
import com.twilio.twiml.VoiceResponse;
7
8
import javax.servlet.http.HttpServlet;
9
import javax.servlet.http.HttpServletRequest;
10
import javax.servlet.http.HttpServletResponse;
11
import java.io.IOException;
12
13
public class VoiceServlet extends HttpServlet {
14
15
public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
16
17
// Create a TwiML response and add our friendly message.
18
TwiML twiml = new VoiceResponse.Builder()
19
.gather(
20
new Gather.Builder()
21
.numDigits(1)
22
.say(new Say.Builder("For sales, press 1. For support, press 2.").build())
23
.build()
24
)
25
.redirect(new Redirect.Builder().url("/voice").build())
26
.build();
27
28
response.setContentType("application/xml");
29
try {
30
response.getWriter().print(twiml.toXml());
31
} catch (TwiMLException e) {
32
throw new RuntimeException(e);
33
}
34
}
35
}

If the user doesn't enter any input after a configurable timeout, Twilio will continue processing the TwiML in the document to determine what should happen next in the call. When the end of the document is reached, Twilio will hang up the call. In the above example, we use the <Redirect> verb to have Twilio request the same URL again, repeating the prompt for the user

If a user were to enter input with the example above, the user would hear the same prompt over and over again regardless of what button you pressed. By default, if the user does enter input in the <Gather>, Twilio will send another HTTP request to the current webhook URL with a POST parameter containing the Digits entered by the user. In the sample above, we weren't handling this input at all. Let's update that logic to also process user input if it is present.

Branch your call logic based on the digits sent by the userLink to code sample: Branch your call logic based on the digits sent by the user
1
import com.twilio.twiml.*;
2
3
import javax.servlet.http.HttpServlet;
4
import javax.servlet.http.HttpServletRequest;
5
import javax.servlet.http.HttpServletResponse;
6
import java.io.IOException;
7
8
public class VoiceServlet extends HttpServlet {
9
10
public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
11
12
// Create a TwiML response and add our friendly message.
13
VoiceResponse.Builder builder = new VoiceResponse.Builder();
14
15
String digits = request.getParameter("Digits");
16
if (digits != null) {
17
switch (digits) {
18
case "1":
19
builder.say(new Say.Builder("You selected sales. Good for you!").build());
20
break;
21
case "2":
22
builder.say(new Say.Builder("You need support. We will help!").build());
23
break;
24
default:
25
builder.say(new Say.Builder("Sorry, I don\'t understand that choice.").build());
26
appendGather(builder);
27
break;
28
}
29
} else {
30
appendGather(builder);
31
}
32
33
response.setContentType("application/xml");
34
try {
35
response.getWriter().print(builder.build().toXml());
36
} catch (TwiMLException e) {
37
throw new RuntimeException(e);
38
}
39
}
40
41
private static void appendGather(VoiceResponse.Builder builder) {
42
builder.gather(new Gather.Builder()
43
.numDigits(1)
44
.say(new Say.Builder("For sales, press 1. For support, press 2.").build())
45
.build()
46
)
47
.redirect(new Redirect.Builder().url("/voice").build());
48
}
49
}

Specify an action to take after user input is collected

specify-an-action-to-take-after-user-input-is-collected page anchor

You may want to have an entirely different endpoint in your application handle the processing of user input. This is possible using the "action" attribute of the <Gather> verb. Let's update our example to add a second endpoint that will be responsible for handling user input.

Add another route to handle the input from the userLink to code sample: Add another route to handle the input from the user
1
import com.twilio.twiml.*;
2
3
import javax.servlet.http.HttpServlet;
4
import javax.servlet.http.HttpServletRequest;
5
import javax.servlet.http.HttpServletResponse;
6
import java.io.IOException;
7
8
public class VoiceServlet extends HttpServlet {
9
10
public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
11
12
// Create a TwiML response and add our friendly message.
13
TwiML twiml = new VoiceResponse.Builder()
14
.gather(new Gather.Builder()
15
.numDigits(1)
16
.action("/gather")
17
.say(new Say.Builder("For sales, press 1. For support, press 2.").build())
18
.build()
19
)
20
.redirect(new Redirect.Builder().url("/voice").build())
21
.build();
22
23
response.setContentType("application/xml");
24
try {
25
response.getWriter().print(twiml.toXml());
26
} catch (TwiMLException e) {
27
throw new RuntimeException(e);
28
}
29
}
30
}
Implement an 'action' URL to handle user inputLink to code sample: Implement an 'action' URL to handle user input
1
import com.twilio.twiml.voice.Redirect;
2
import com.twilio.twiml.voice.Say;
3
import com.twilio.twiml.TwiMLException;
4
import com.twilio.twiml.VoiceResponse;
5
6
import javax.servlet.http.HttpServlet;
7
import javax.servlet.http.HttpServletRequest;
8
import javax.servlet.http.HttpServletResponse;
9
import java.io.IOException;
10
11
public class GatherServlet extends HttpServlet {
12
13
public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
14
15
// Create a TwiML response and add our friendly message.
16
VoiceResponse.Builder builder = new VoiceResponse.Builder();
17
18
String digits = request.getParameter("Digits");
19
if (digits != null) {
20
switch (digits) {
21
case "1":
22
builder.say(new Say.Builder("You selected sales. Good for you!").build());
23
break;
24
case "2":
25
builder.say(new Say.Builder("You need support. We will help!").build());
26
break;
27
default:
28
builder.say(new Say.Builder("Sorry, I don\'t understand that choice.").build());
29
builder.redirect(new Redirect.Builder().url("/voice").build());
30
break;
31
}
32
} else {
33
builder.redirect(new Redirect.Builder().url("/voice").build());
34
}
35
36
response.setContentType("application/xml");
37
try {
38
response.getWriter().print(builder.build().toXml());
39
} catch (TwiMLException e) {
40
throw new RuntimeException(e);
41
}
42
}
43
}

The action attribute takes a relative URL which would point to another route your server is capable of handling. Now, instead of conditional logic in a single route, we use actions and redirects to handle our call logic with separate code paths.


If you're building call center type applications in Java Servlets, you might enjoy stepping through full sample applications that implement a full IVR system.

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.