Below method will handle the alert dialog displayed and also it will return the alert message displayed.
public String getAlert() {
Alert alert = driver.switchTo().alert();
String alertMsg = alert.getText();
alert.accept();
return alertMsg; }