com.arch.util.NavegadorWebUtils Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.arch.util;
import java.awt.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
/**
* @author Wagner
*/
public final class NavegadorWebUtils {
private NavegadorWebUtils() {
}
public static void abrirPagina(String url) {
try {
Desktop.getDesktop().browse(new URI(url));
} catch (URISyntaxException | IOException e) {
LogUtils.generate(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy