Open a terminal using Ctrl+Alt+T shortcut or searching for it in the menu. All you need is to copy paste the command below in the terminal:
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
quarta-feira, 29 de maio de 2019
quinta-feira, 23 de maio de 2019
Download file using htmlunit
// Exemplo de como baixar um arquivo após clicar em um link com HtmlUnit - Java
WebClient webClient = new WebClient();
try {
HtmlPage page = webClient.getPage("https://cdn.kernel.org");
List anchors = page.getByXPath("//*[@id='latest_link']/a");
anchors.get(0).click();
InputStream is = page.getEnclosingWindow().getEnclosedPage().getWebResponse().getContentAsStream();
String file = "public/kernel.tar.xz";
Files.copy(is, Paths.get(file));
File f = new File(file);
} catch (IOException e) {
e.printStackTrace();
}
WebClient webClient = new WebClient();
try {
HtmlPage page = webClient.getPage("https://cdn.kernel.org");
List
anchors.get(0).click();
InputStream is = page.getEnclosingWindow().getEnclosedPage().getWebResponse().getContentAsStream();
String file = "public/kernel.tar.xz";
Files.copy(is, Paths.get(file));
File f = new File(file);
} catch (IOException e) {
e.printStackTrace();
}
Assinar:
Postagens (Atom)
How to Enable Click to Minimize On Ubuntu
Open a terminal using Ctrl+Alt+T shortcut or searching for it in the menu. All you need is to copy paste the command below in the terminal: ...
-
Existe um mito que diz não ser possível renomear nome de tabelas no banco de dados Firebird. Realmente pelo tradicional commando ALTER TABLE...
-
// Exemplo de como baixar um arquivo após clicar em um link com HtmlUnit - Java WebClient webClient = new WebClient(); try { HtmlPag...
-
Open a terminal using Ctrl+Alt+T shortcut or searching for it in the menu. All you need is to copy paste the command below in the terminal: ...