All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arch.util.NavegadorWebUtils Maven / Gradle / Ivy

There is a newer version: 18.12.0
Show newest version
/*
 * 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